1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub mod codegen;
mod compile;

mod macros;

pub mod ast;
pub mod ir;

pub(crate) use crate::ast::parser;
pub use crate::compile::{compile_fbs, compile_fbs_generic};