diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-03-18 12:06:17 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-03-18 13:24:20 +1300 |
commit | 0925bd156ae2e34ad259d40aaf870eb5f7cfcfb9 (patch) | |
tree | abd0a35a995f53b10e81b66cdfd4571f93748343 /src/stages/mod.rs | |
parent | f25bc47f5c6b7e52304b1e9c9adb4310f2e77ee7 (diff) | |
download | torque-asm-0925bd156ae2e34ad259d40aaf870eb5f7cfcfb9.zip |
Update assembler dependency
torque-asm now uses the Compiler type provided by the assembler library.
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::*; |