plotnik_compiler/bytecode/
mod.rs

1//! Compile-time IR for bytecode emission.
2
3mod ir;
4
5#[cfg(test)]
6mod ir_tests;
7
8pub use ir::*;