refactor: Planner -> PackageBuilder

This commit is contained in:
Shunsuke Shibayama 2023-10-08 14:06:42 +09:00
parent d13c0e959d
commit 450eafe8aa
3 changed files with 129 additions and 29 deletions

View file

@ -8,6 +8,7 @@ pub mod artifact;
pub mod build_hir;
mod compile;
pub use compile::*;
pub mod build_package;
mod codegen;
pub mod context;
pub mod declare;
@ -22,7 +23,6 @@ pub mod lower;
pub mod module;
pub mod optimize;
pub mod ownercheck;
pub mod plan;
pub mod transpile;
pub mod ty;
pub mod varinfo;