mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 20:34:44 +00:00
Organize crates
This commit is contained in:
parent
6ddef21fec
commit
f9d91aa38e
71 changed files with 6 additions and 14 deletions
18
compiler/erg_compiler/lib.rs
Normal file
18
compiler/erg_compiler/lib.rs
Normal file
|
@ -0,0 +1,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 optimize;
|
||||
pub mod ownercheck;
|
||||
pub mod context;
|
||||
pub mod varinfo;
|
Loading…
Add table
Add a link
Reference in a new issue