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

#[cfg(test)]
mod tests;

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