Add ASTLowererRunner

* add `--mode lower`
This commit is contained in:
Shunsuke Shibayama 2022-09-11 11:56:41 +09:00
parent 64d57641c9
commit a636a1d843
5 changed files with 104 additions and 13 deletions

View file

@ -6,13 +6,12 @@ pub extern crate erg_parser;
mod compile;
pub use compile::*;
mod codegen;
pub mod context;
pub mod effectcheck;
pub mod error;
pub mod hir;
pub mod link;
pub mod lower;
pub use lower::ASTLowerer;
pub mod context;
pub mod optimize;
pub mod ownercheck;
pub mod varinfo;