This commit is contained in:
Stephen Chung
2022-08-09 16:31:25 +08:00
parent 47f02b96d7
commit 68c11060d9
4 changed files with 455 additions and 1 deletions

View File

@@ -169,7 +169,12 @@ type InclusiveRange = std::ops::RangeInclusive<INT>;
#[cfg(not(feature = "no_std"))]
#[cfg(not(target_family = "wasm"))]
pub use api::files::{eval_file, run_file};
pub use api::{eval::eval, events::VarDefInfo, run::run};
pub use api::{
build_type::{CustomType, TypeBuilder},
eval::eval,
events::VarDefInfo,
run::run,
};
pub use ast::{FnAccess, AST};
pub use engine::{Engine, OP_CONTAINS, OP_EQUALS};
pub use eval::EvalContext;