Fix up eval params and refactor

This commit is contained in:
JT
2021-08-16 10:33:34 +12:00
parent 7655b070df
commit 579814895d
6 changed files with 301 additions and 260 deletions

View File

@@ -1,3 +1,7 @@
mod eval;
mod state;
mod value;
pub use eval::{eval_block, eval_expression, eval_operator, ShellError, Stack, State, Value};
pub use eval::{eval_block, eval_expression, eval_operator, ShellError};
pub use state::{Stack, State};
pub use value::Value;