chore: cleanup

This commit is contained in:
2025-06-08 00:59:31 +08:00
parent 0fd846e844
commit 3797544fc2
25 changed files with 1028 additions and 1481 deletions

View File

@@ -1,18 +1,13 @@
#![cfg_attr(test, feature(test))]
#![allow(dead_code)]
#![feature(iter_collect_into)]
#![feature(arbitrary_self_types)]
mod builtins;
mod bytecode;
mod env;
mod stack;
mod ty;
pub mod compile;
pub mod error;
pub mod ir;
pub mod jit;
pub mod vm;
pub mod eval;
pub mod engine;
pub use ty::public::Value;