1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate indexing;
extern crate ordermap;
extern crate proc_macro2;

pub mod generate;
pub mod grammar;
pub mod proc_macro;
pub mod runtime;
pub mod scannerless;

// HACK(eddyb) needed for bootstrapping `parse_grammar`.
mod gll {
    pub(crate) use runtime;
}
mod parse_grammar;