1 2 3 4 5 6 7
pub mod ast; pub mod error; pub mod lexer; pub mod parser; pub mod token; type Result<T, E = error::Error> = std::result::Result<T, E>;