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

#[cfg(feature = "disassembler")]
mod disassembler;

#[cfg(test)]
mod tests;

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