- Avoid lifetime parameter for Source, Span. Use Rc instead.
- Engine for simplified API

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2023-11-07 23:15:28 -08:00
committed by GitHub
parent a751cd69e1
commit d69b413c8e
15 changed files with 721 additions and 690 deletions
+2
View File
@@ -3,6 +3,7 @@
pub mod ast;
pub mod builtins;
pub mod engine;
pub mod interpreter;
pub mod lexer;
pub mod parser;
@@ -11,6 +12,7 @@ mod utils;
pub mod value;
pub use ast::*;
pub use engine::*;
pub use interpreter::*;
pub use lexer::*;
pub use parser::*;