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
15
16
//! Standard library built-in objects.
//!
//! This module contains implementations of JavaScript built-in objects
//! like console, Object, Array, String, Number, Math, JSON, and Error types.

pub mod core;
pub mod console;
pub mod object;
pub mod array;
pub mod string;
pub mod number;
pub mod math;
pub mod json;
pub mod error;

pub use core::register_core_builtins;