1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! A crate containing tools to manipulate ASTs in generic (i.e. JSON)
//! format.

extern crate binjs_meta;

extern crate rand;
extern crate serde_json;

/// Generic instance of `Spec` representing the es6 AST.
pub mod es6;

/// Generating random ASTs (for fuzzing purposes).
pub mod pick;

/// Walkers, comparisons.
pub mod util;