1 2 3 4 5 6 7 8 9 10
//! Source-level operations. //! //! Reading a JavaScript text source file into an AST. mod parser; pub use self::parser::SourceParser; /// Parsing JavaScript using the Shift source parser (in Node). pub mod shift; pub use self::shift::Shift;