1 2 3 4 5 6 7 8 9 10 11 12 13
/// Contains code related to abstract syntax
/// trees generated from the syntax definitions
/// for user-defined languages.
pub mod ast;
/// Contains code related to the peg parser.
pub mod peg;
/// Simple version of the syntax file parser
/// used for bootstrapping.
pub mod bootstrap;
pub mod syntax_file;