actually compiles and does stuff now

This commit is contained in:
2024-12-06 19:44:33 -05:00
parent 31c197e991
commit 620c4557e9
67 changed files with 1931 additions and 1287 deletions

10
src/ir/upper/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
mod def;
mod func;
mod ty;
mod namespace;
use super::*;
pub use def::*;
pub use func::*;
pub use ty::*;
pub use namespace::*;