summary refs log tree commit diff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-08-30 23:35:45 +1200
committerSophie Forrest <git@sophieforrest.com>2024-08-30 23:35:45 +1200
commitf752160c6ebcee747a61e6febc4789d0b04ccd12 (patch)
tree76e123279abbd1797ba281f35cbcba61136ef7bd /src/lib.rs
parent98d7946709032aae5e1d0d35cff78efc55550900 (diff)
feat: implement generic engine for executor
Diffstat (limited to '')
-rw-r--r--src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 725084a..4a7950a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -83,13 +83,14 @@
 extern crate test;
 
 mod constants;
+mod engine;
 pub mod executor;
 pub mod lexer;
 pub mod parser;
 #[cfg(feature = "utilities")]
 pub mod utility;
 
-pub use executor::execute;
+pub use executor::Executor;
 pub use lexer::{lex, OperatorCode};
 use miette::Diagnostic;
 pub use parser::{parse, Instruction};