Organize crates

This commit is contained in:
Shunsuke Shibayama 2022-08-13 06:38:12 +09:00
parent 6ddef21fec
commit f9d91aa38e
71 changed files with 6 additions and 14 deletions

View 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};