Skip to main content

runmat_vm/bytecode/
mod.rs

1pub mod compile;
2pub mod instr;
3pub mod program;
4
5pub use compile::compile;
6pub use instr::{ArgSpec, EmitLabel, EndExpr, Instr, StackEffect};
7pub use program::{Bytecode, CallFrame, ExecutionContext, UserFunction};