Create erg_type crate

This commit is contained in:
Shunsuke Shibayama 2022-08-26 11:52:11 +09:00
parent e4e89f38f9
commit 5b5234f477
43 changed files with 2995 additions and 8238 deletions

View file

@ -5,7 +5,6 @@ extern crate erg_parser;
use std::process;
use erg_common::config::ErgConfig;
use erg_common::deserialize::Deserializer;
use erg_common::traits::Runnable;
use erg_compiler::Compiler;
@ -13,6 +12,8 @@ use erg_compiler::Compiler;
use erg_parser::lex::LexerRunner;
use erg_parser::ParserRunner;
use erg_type::deserialize::Deserializer;
fn main() {
let cfg = ErgConfig::parse();
match cfg.mode {