1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! Types and support for parsing the core wasm text format.

mod custom;
mod export;
mod expr;
mod func;
mod global;
mod import;
mod memory;
mod module;
mod table;
mod tag;
mod types;
mod wast;
pub use self::custom::*;
pub use self::export::*;
pub use self::expr::*;
pub use self::func::*;
pub use self::global::*;
pub use self::import::*;
pub use self::memory::*;
pub use self::module::*;
pub use self::table::*;
pub use self::tag::*;
pub use self::types::*;
pub use self::wast::*;

pub(crate) mod binary;
pub(crate) mod resolve;