feat: better builtins implementaion

get rid of circular references
This commit is contained in:
2025-05-17 18:31:36 +08:00
parent 8480e0891b
commit ff9afd0cc1
19 changed files with 191 additions and 244 deletions

View File

@@ -1,11 +1,10 @@
#![cfg_attr(test, feature(test))]
#![allow(dead_code)]
mod builtins;
mod bytecode;
mod ty;
mod stack;
mod ty;
pub mod compile;
pub mod error;