tada/src/ast.rs

21 lines
375 B
Rust

mod basic;
mod call;
mod expr;
mod field;
mod func_def;
mod lit;
mod program;
mod table_constr;
mod table_destr;
mod var;
pub use self::basic::*;
pub use self::call::*;
pub use self::expr::*;
pub use self::field::*;
pub use self::func_def::*;
pub use self::lit::*;
pub use self::program::*;
pub use self::table_constr::*;
pub use self::table_destr::*;
pub use self::var::*;