feat: stash

This commit is contained in:
2025-05-10 16:29:55 +08:00
parent 14045f7924
commit f86c088e97
21 changed files with 222 additions and 219 deletions

View File

@@ -2,12 +2,14 @@
mod builtins;
mod bytecode;
mod compile;
mod downcast;
mod ty;
mod vm;
mod jit;
pub use compile::compile;
pub mod compile;
pub mod error;
pub mod ir;
#[cfg(feature = "jit")]
pub mod jit;
#[cfg(feature = "vm")]
pub mod vm;
pub use ty::public::Value;
pub use vm::run;