1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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;