mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
Organize crates
This commit is contained in:
parent
6ddef21fec
commit
f9d91aa38e
71 changed files with 6 additions and 14 deletions
12
compiler/erg_parser/lib.rs
Normal file
12
compiler/erg_parser/lib.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
//! Implements `Parser` for Erg. `Parser` parses the source code to generate `AST`,
|
||||
//! and performs type checking and other optimizations if necessary.
|
||||
extern crate erg_common;
|
||||
|
||||
pub mod desugar;
|
||||
pub mod error;
|
||||
pub mod ast;
|
||||
pub mod lex;
|
||||
pub mod parse;
|
||||
pub mod token;
|
||||
|
||||
pub use parse::{Parser, ParserRunner};
|
Loading…
Add table
Add a link
Reference in a new issue