Skip to content

Commit

Permalink
Update compiler flow chart
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksvensson committed Dec 24, 2024
1 parent 3d0409f commit 815204e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions docs/compiler/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ steps needed to compile Mew code.

```mermaid
flowchart LR;
subgraph Compiler
subgraph Frontend
AST-->HIR
HIR-->MIR
MIR-->LIR
MIR-..->LIR
end
subgraph Backend
LIR-->ByteCode["Mew Byte Code"]
MIR-->Interpreter
LIR-. Future .->LLVM["LLVM IR"]
end
end
ByteCode-->Interpreter
LLVM-.->Executable
```

Expand Down

0 comments on commit 815204e

Please sign in to comment.