Boa 0.11.0

Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language.
Documentation
//! Declaration nodes

pub mod arrow_function_decl;
pub mod async_function_decl;
pub mod async_function_expr;
pub mod const_decl_list;
pub mod function_decl;
pub mod function_expr;
pub mod let_decl_list;
pub mod var_decl_list;

pub use self::{
    arrow_function_decl::ArrowFunctionDecl,
    async_function_decl::AsyncFunctionDecl,
    async_function_expr::AsyncFunctionExpr,
    const_decl_list::{ConstDecl, ConstDeclList},
    function_decl::FunctionDecl,
    function_expr::FunctionExpr,
    let_decl_list::{LetDecl, LetDeclList},
    var_decl_list::{VarDecl, VarDeclList},
};

#[cfg(test)]
mod tests;