1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! This crate offers tools designed to aid with the implementation
//! of the JavaScript syntax and BinAST encoders/decoders/manipulators.

extern crate inflector;
extern crate itertools;

#[macro_use]
extern crate log;
extern crate webidl;


/// Generic tools for generating implementations of the Syntax.
pub mod export;

/// Import a specification of the Syntax.
pub mod import;

/// Manipulating the specifications of the language.
pub mod spec;

/// Misc. utilities.
pub mod util;