prepare for modules

This commit is contained in:
2025-04-25 04:16:54 -04:00
parent 0ceb82445e
commit 4e7c201690
30 changed files with 369 additions and 333 deletions
+13 -12
View File
@@ -1,17 +1,18 @@
mod kind;
mod instr;
mod ty;
mod program;
mod validate;
mod assoc;
mod error;
mod inst;
mod maps;
mod instr;
mod kind;
mod program;
mod ty;
mod validate;
use super::*;
use maps::*;
pub use maps::Idents;
pub use kind::*;
pub use instr::*;
pub use ty::*;
pub use program::*;
use assoc::*;
pub use assoc::Idents;
pub use inst::*;
pub use instr::*;
pub use kind::*;
pub use program::*;
pub use ty::*;