about summary refs log blame commit diff
path: root/tvix/eval/src/lib.rs
blob: e1a5ceaed83c53ef9615313375a03214c32fffc4 (plain) (tree)
1
2
3
4
5
6
7
8
9
             

             
                 

           
             
           
             

          
             






                                  
mod builtins;
mod chunk;
mod compiler;
mod disassembler;
mod errors;
mod eval;
mod observer;
mod opcode;
mod upvalues;
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;