From 67470aea034fd46f4bbcfe815c51ad3451043188 Mon Sep 17 00:00:00 2001 From: Ben Bridle Date: Thu, 27 Feb 2025 14:53:21 +1300 Subject: 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. --- src/tokens/mod.rs | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'src/tokens/mod.rs') diff --git a/src/tokens/mod.rs b/src/tokens/mod.rs index edb7c19..53ccc6e 100644 --- a/src/tokens/mod.rs +++ b/src/tokens/mod.rs @@ -1,9 +1,19 @@ -pub mod syntactic; +mod expression; +mod packed_binary_literal; +mod tracked_integer; +mod tracked; -pub mod semantic; +pub use expression::*; +pub use packed_binary_literal::*; +pub use tracked_integer::*; +pub use tracked::*; -mod constant_expression; -pub use constant_expression::*; +mod syntactic; +mod semantic; +mod assembler; +mod bytecode; -mod packed_binary_literal; -pub use packed_binary_literal::*; +pub use syntactic::*; +pub use semantic::*; +pub use assembler::*; +pub use bytecode::*; -- cgit v1.2.3-70-g09d2