feat: JIT (WIP)

This commit is contained in:
2025-05-17 22:38:05 +08:00
parent 95ebddf272
commit 29e959894d
7 changed files with 320 additions and 103 deletions

View File

@@ -5,11 +5,11 @@ mod builtins;
mod bytecode;
mod stack;
mod ty;
mod jit;
pub mod compile;
pub mod error;
pub mod ir;
pub mod jit;
pub mod vm;
pub use ty::public::Value;