wasm_ast/model/
mod.rs

1//! The model of the WebAssembly syntax.
2
3mod errors;
4pub mod indices;
5pub mod instruction;
6pub mod module;
7pub mod types;
8pub mod values;
9
10pub use errors::ModelError;
11pub use indices::*;
12pub use instruction::*;
13pub use module::*;
14pub use types::*;
15pub use values::*;