moved AST into seperate file

This commit is contained in:
ParkerTenBroeck 2025-12-18 22:46:16 -05:00
parent 7970cb197a
commit 7e0d4ca69a
6 changed files with 116 additions and 83 deletions

View file

@ -1,6 +1,7 @@
pub mod dfa;
pub mod lexer;
pub mod parser;
pub mod ast;
pub struct SymbolMap<T>([T; 256]);