Add "check" mode

Input::File(String) -> Input::file(PathBuf)
This commit is contained in:
Shunsuke Shibayama 2022-09-21 14:01:20 +09:00
parent c1d92bc0f4
commit 9b0d66a63a
16 changed files with 200 additions and 184 deletions

View file

@ -3,8 +3,8 @@
extern crate erg_common;
pub extern crate erg_parser;
mod builder;
mod check;
pub mod builder;
pub mod check;
mod compile;
pub use compile::*;
mod codegen;