zub 0.3.14

A fast, stack-based virtual machine for dynamic languages, with an intuitive IR-builder, garbage collection and NaN-tagging.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod value;
#[macro_use]
pub mod chunk;
pub mod vm;
pub mod gc;
pub mod disassembler;

use super::compiler::*;
use super::ir::*;

pub use self::value::*;
#[macro_use]
pub use self::chunk::*;
pub use self::vm::*;
pub use self::gc::*;
pub use self::disassembler::*;