1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! defines the compiler for Erg (ergc).
extern crate erg_common;
pub extern crate erg_parser;

mod compile;
pub use compile::*;
mod codegen;
pub mod effectcheck;
pub mod error;
pub mod eval;
pub mod hir;
pub mod initialize;
pub mod lower;
pub use lower::ASTLowerer;
pub mod context;
pub mod optimize;
pub mod ownercheck;
pub mod varinfo;