1 2 3 4 5 6 7 8 9 10 11
pub(crate) mod ast; mod error; mod parser; #[cfg(test)] mod tests; pub(crate) type Parser<'a> = parser::Parser<'a>; pub(crate) type Error = error::Error; pub(crate) type Result<T> = std::result::Result<T, error::Error>;