huge refactor, can now define structs out of order

This commit is contained in:
2025-04-11 01:57:10 -04:00
parent f6a6761262
commit 31c16a263b
24 changed files with 765 additions and 566 deletions

View File

@@ -1,5 +1,5 @@
mod def;
mod func;
mod kind;
mod instr;
mod ty;
mod program;
mod validate;
@@ -7,8 +7,8 @@ mod error;
mod inst;
use super::*;
pub use def::*;
pub use func::*;
pub use kind::*;
pub use instr::*;
pub use ty::*;
pub use program::*;
pub use inst::*;