erg/compiler/erg_compiler/lib.rs
Shunsuke Shibayama f12c2ba723 Add SharedModuleCache
Rename: RcCell -> Shared
2022-09-20 11:51:18 +09:00

18 lines
352 B
Rust

//! defines the compiler for Erg (ergc).
#![allow(clippy::large_enum_variant)]
extern crate erg_common;
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 lower;
pub mod mod_cache;
pub mod optimize;
pub mod ownercheck;
pub mod reorder;
pub mod varinfo;