about summary refs log tree commit diff
path: root/tvix/eval/src/lib.rs
blob: 75cd246424bb3eb1cbd8c891ed6594214b375e69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod chunk;
mod compiler;
mod errors;
mod eval;
mod opcode;
mod value;
mod vm;

#[cfg(test)]
mod tests;

pub use crate::errors::EvalResult;
pub use crate::eval::interpret;
pub use crate::value::Value;