binjs_meta 0.5.4

Part of binjs-ref. Tools for manipulating grammars. You probably do not want to use this crate directly unless you're writing an encoder, decoder or parser generator for binjs.
Documentation
//! 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 weedle;

/// 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;