evalit 0.1.1

a toy interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod ast;
mod bytecode;
mod compiler;
mod error;
mod interpreter;
mod ir;
mod runtime;

pub use error::Error;
pub use interpreter::Interpreter;
#[cfg(feature = "async")]
pub use runtime::Promise;
pub use runtime::{Environment, NativeFunction, Null, Object, RuntimeError, Value, ValueRef};