1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
mod grammar {
    #![cfg_attr(feature = "cargo-clippy", allow(clippy))]
    include!(concat!(env!("OUT_DIR"), "/grammar.rs"));
}
mod searchpath;
mod sourcepaths;
mod parser;

pub mod ast;
pub mod error;

pub use searchpath::SearchPath;
pub use parser::Parser;
pub use error::Error;
pub use error::ParseError;