logo
Expand description

The Javascript Abstract Syntax Tree.

Re-exports

pub use self::constant::Const;
pub use self::keyword::Keyword;
pub use self::node::Node;
pub use self::position::Position;
pub use self::position::Span;
pub use self::punctuator::Punctuator;

Modules

This module implements the Const structure, which represents the primitive values in JavaScript.
This module implements the Keyword structure, which represents reserved words of the JavaScript language.
This module implements the Node structure, which composes the AST.
This module implements various structure for logic handling.
This module implements the Pos structure, which represents a position in the source code.
This module implements the Punctuator, which represents all punctuators used in JavaScript