wasm-ast 0.1.0

A WebAssembly syntax model useful for generate, reading, and emitting WebAssembly code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The model of the WebAssembly syntax.

mod errors;
pub mod indices;
pub mod instruction;
pub mod module;
pub mod types;
pub mod values;

pub use errors::ModelError;
pub use indices::*;
pub use instruction::*;
pub use module::*;
pub use types::*;
pub use values::*;