Add builder & linker

This commit is contained in:
Shunsuke Shibayama 2022-09-21 01:21:17 +09:00
parent 671fbee518
commit 201b313cd2
19 changed files with 241 additions and 109 deletions

View file

@ -3,7 +3,8 @@
extern crate erg_common;
pub extern crate erg_parser;
mod checker;
mod builder;
mod check;
mod compile;
pub use compile::*;
mod codegen;
@ -11,8 +12,10 @@ pub mod context;
pub mod effectcheck;
pub mod error;
pub mod hir;
pub mod link;
pub mod lower;
pub mod mod_cache;
// pub mod name_resolve;
pub mod optimize;
pub mod ownercheck;
pub mod varinfo;