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