diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-02-27 14:53:21 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-02-27 14:53:31 +1300 |
commit | 67470aea034fd46f4bbcfe815c51ad3451043188 (patch) | |
tree | 83d78d3d28e094d6a3af347d2ff2ff16472e5421 /src/parsers/mod.rs | |
parent | 4e8fae09f0f7d6f3a4ddbe285aeb01ef0622b761 (diff) | |
download | torque-asm-67470aea034fd46f4bbcfe815c51ad3451043188.zip |
Finish first working version of Torque
This is a huge and messy commit, worked on piecemeal while traveling
and while the language was still being designed.
Diffstat (limited to 'src/parsers/mod.rs')
-rw-r--r-- | src/parsers/mod.rs | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/parsers/mod.rs b/src/parsers/mod.rs index 91765a9..da2c23a 100644 --- a/src/parsers/mod.rs +++ b/src/parsers/mod.rs @@ -1,11 +1,15 @@ -mod constant_expression; -pub use constant_expression::*; - +mod expression; mod packed_binary_literal; + +pub use expression::*; pub use packed_binary_literal::*; mod syntactic; -pub use syntactic::*; - mod semantic; +mod assembler; +mod bytecode; + +pub use syntactic::*; pub use semantic::*; +pub use assembler::*; +pub use bytecode::*; |