tvl-depot/tvix/eval/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
266 B
Rust
Raw Normal View History

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;