diff options
Diffstat (limited to 'src/stages/mod.rs')
-rw-r--r-- | src/stages/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stages/mod.rs b/src/stages/mod.rs index e735f05..571fd65 100644 --- a/src/stages/mod.rs +++ b/src/stages/mod.rs @@ -1,3 +1,4 @@ +mod compiler; mod syntactic; mod syntactic_tokens; mod semantic; @@ -7,6 +8,7 @@ mod intermediate_tokens; mod bytecode; mod bytecode_tokens; +pub use compiler::*; pub use syntactic::*; pub use syntactic_tokens::*; pub use semantic::*; |