Files
nixjit/src/lib.rs
imxyy_soope_ 2c73893757 feat: conditional test feature
fix error on stable toolchain
2025-05-11 20:52:34 +08:00

15 lines
178 B
Rust

#![cfg_attr(test, feature(test))]
#![allow(dead_code)]
mod builtins;
mod bytecode;
mod ty;
pub mod compile;
pub mod error;
pub mod ir;
pub mod vm;
pub use ty::public::Value;