mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
12 lines
307 B
Rust
12 lines
307 B
Rust
//! 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};
|