mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 12:14:51 +00:00
* ruby.rs should hold the main entrypoint to YJIT and ZJIT * The crate jit will hold code shared between them
5 lines
84 B
Rust
5 lines
84 B
Rust
#[cfg(feature = "yjit")]
|
|
pub use yjit::*;
|
|
#[cfg(feature = "zjit")]
|
|
pub use zjit::*;
|