compiler/lib.rs
1#[macro_use]
2extern crate lazy_static;
3
4pub mod compiler;
5mod compiler_function_test;
6#[cfg(test)]
7mod compiler_test;
8mod frame;
9pub mod op_code;
10mod op_code_test;
11pub mod snapshot;
12pub mod snapshot_layout;
13mod snapshot_layout_test;
14mod snapshot_test;
15pub mod symbol_table;
16mod symbol_table_test;
17mod type_erasure_test;
18pub mod vm;
19mod vm_function_test;
20#[cfg(test)]
21mod vm_test;