Add `ASTBuilder`, `Checker`
This commit is contained in:
Shunsuke Shibayama 2022-09-20 14:42:37 +09:00
parent f12c2ba723
commit d8799f0895
14 changed files with 254 additions and 104 deletions

View file

@ -4,10 +4,12 @@
extern crate erg_common;
pub mod ast;
pub mod builder;
pub mod desugar;
pub mod error;
pub mod lex;
pub mod parse;
pub mod reorder;
pub mod token;
pub use parse::{Parser, ParserRunner};