mylang_ast/
lib.rs

1
2
3
4
5
6
7
//! 抽象構文木の定義

mod expr;
mod stmt;

pub use expr::Expr;
pub use stmt::Stmt;