just-engine 0.1.0

A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod env_record;
pub mod error;
pub mod execution_context;
pub mod function_object;
pub mod heap;
mod iterator_object;
pub mod lex_env;
pub mod object;
pub mod object_property;
pub mod operations;
pub mod realm;
mod scope;
mod symbol;
pub mod value;