1//! Types and support for parsing the core wasm text format.
2
3mod custom;
4mod export;
5mod expr;
6mod func;
7mod global;
8mod import;
9mod memory;
10mod module;
11mod table;
12mod tag;
13mod types;
14mod wast;
15pub use self::binary::{EncodeOptions, GenerateDwarf};
16pub use self::custom::*;
17pub use self::export::*;
18pub use self::expr::*;
19pub use self::func::*;
20pub use self::global::*;
21pub use self::import::*;
22pub use self::memory::*;
23pub use self::module::*;
24pub use self::table::*;
25pub use self::tag::*;
26pub use self::types::*;
27pub use self::wast::*;
28
29pub(crate) mod binary;
30pub(crate) mod resolve;
31