jvm_assembler/program/mod.rs
1#![doc = include_str!("readme.md")]
2
3/// JVM program entity definitions
4pub mod entities;
5/// JVM instruction definitions
6pub mod instructions;
7/// Legacy compatibility layer
8pub mod legacy;
9/// Constant pool management
10pub mod pool;
11/// Core JVM types and enumerations
12pub mod types;
13
14pub use entities::*;
15pub use instructions::*;
16pub use legacy::*;
17pub use pool::*;
18pub use types::*;