binjs_meta/lib.rs
1//! This crate offers tools designed to aid with the implementation
2//! of the JavaScript syntax and BinAST encoders/decoders/manipulators.
3
4extern crate inflector;
5extern crate itertools;
6
7#[macro_use]
8extern crate log;
9extern crate weedle;
10
11/// Generic tools for generating implementations of the Syntax.
12pub mod export;
13
14/// Import a specification of the Syntax.
15pub mod import;
16
17/// Manipulating the specifications of the language.
18pub mod spec;
19
20/// Misc. utilities.
21pub mod util;