1 2 3 4 5 6 7 8 9 10
#![allow(missing_docs)] /// This module contains the internals of the compiler. pub mod ast; pub mod codegen; pub mod instructions; pub mod lexer; #[cfg(feature = "macros")] pub mod meta; pub mod parser; pub mod tokens;