1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Contains datastructures and utility functions
//! common to both the `compiler` and `vm`.
//!
//! - Core data-strucutres.
//! - Opcodes and number splicing.
//! - Source code representation and span annotations.

pub mod source;
pub mod span;
pub mod data;
pub mod number;
pub mod opcode;
pub mod lambda;
pub mod closure;
pub mod stamp;