erg/compiler/erg_parser/lib.rs
Shunsuke Shibayama 6726d93f65 Do cargo fmt
2022-08-13 07:02:07 +09:00

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 ast;
pub mod desugar;
pub mod error;
pub mod lex;
pub mod parse;
pub mod token;
pub use parse::{Parser, ParserRunner};