boa_engine 0.17.0

Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
Documentation
//! All Rust API wrappers for Boa's ECMAScript objects.
//!
//! The structs available in this module provide functionality to interact with native ECMAScript objects from Rust.

mod jsarray;
mod jsarraybuffer;
mod jsdataview;
mod jsdate;
mod jsfunction;
mod jsgenerator;
mod jsmap;
mod jsmap_iterator;
mod jspromise;
mod jsproxy;
mod jsregexp;
mod jsset;
mod jsset_iterator;
mod jstypedarray;

pub use jsarray::*;
pub use jsarraybuffer::*;
pub use jsdataview::*;
pub use jsdate::*;
pub use jsfunction::*;
pub use jsgenerator::*;
pub use jsmap::*;
pub use jsmap_iterator::*;
pub use jspromise::*;
pub use jsproxy::{JsProxy, JsProxyBuilder, JsRevocableProxy};
pub use jsregexp::JsRegExp;
pub use jsset::*;
pub use jsset_iterator::*;
pub use jstypedarray::*;