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
//! Evaluation module for executing JavaScript AST.
//!
//! This module contains the core evaluation logic for the JavaScript interpreter.

pub mod types;
pub mod expression;
pub mod statement;
pub mod function;

pub use types::{Completion, CompletionType, Reference, ReferenceBase};