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

@ -3,6 +3,7 @@
extern crate erg_common;
pub extern crate erg_parser;
mod checker;
mod compile;
pub use compile::*;
mod codegen;
@ -14,5 +15,4 @@ pub mod lower;
pub mod mod_cache;
pub mod optimize;
pub mod ownercheck;
pub mod reorder;
pub mod varinfo;