chore: let HIRBuilder/ASTLowerer be generic

This commit is contained in:
Shunsuke Shibayama 2023-11-03 03:03:11 +09:00
parent f4fcf3f2b2
commit 51c7b0778d
10 changed files with 126 additions and 75 deletions

View file

@ -27,6 +27,6 @@ pub mod transpile;
pub mod ty;
pub mod varinfo;
pub use build_hir::HIRBuilder;
pub use build_hir::{GenericHIRBuilder, HIRBuilder};
pub use erg_parser::build_ast::ASTBuilder;
pub use transpile::Transpiler;