Skip to main content

nyar_assembler/program/
mod.rs

1//! Nyar 程序内部组件
2//!
3//! 本模块包含了用于构建、表示和序列化 Nyar 程序的各项组件。
4
5/// 程序构建器
6pub mod builder;
7/// 核心实体结构(Module, Chunk 等)
8pub mod entities;
9/// 指令定义与编解码
10pub mod instructions;
11/// 常量池管理
12pub mod pool;
13/// 基础类型定义
14pub mod types;
15
16pub use builder::NyarBuilder;
17pub use entities::*;
18pub use instructions::*;
19pub use pool::*;
20pub use types::*;