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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use super::{
BinaryReader, BinaryReaderError, EventType, ExternalKind, GlobalType, LinkingType, MemoryType,
NameType, Naming, Operator, Range, RelocType, Result, SectionCode, TableType, Type,
};
pub use self::alias_section::*;
pub use self::code_section::*;
pub use self::data_section::*;
pub use self::element_section::*;
pub use self::event_section::*;
pub use self::export_section::*;
pub use self::function_section::*;
pub use self::global_section::*;
pub use self::import_section::*;
pub use self::init_expr::*;
pub use self::instance_section::*;
pub use self::linking_section::*;
pub use self::memory_section::*;
pub use self::module_code_section::*;
pub use self::module_section::*;
pub use self::name_section::*;
pub use self::operators::*;
pub use self::producers_section::*;
pub use self::reloc_section::*;
pub use self::section_reader::*;
pub use self::table_section::*;
pub use self::type_section::*;
mod alias_section;
mod code_section;
mod data_section;
mod element_section;
mod event_section;
mod export_section;
mod function_section;
mod global_section;
mod import_section;
mod init_expr;
mod instance_section;
mod linking_section;
mod memory_section;
mod module_code_section;
mod module_section;
mod name_section;
mod operators;
mod producers_section;
mod reloc_section;
mod section_reader;
mod table_section;
mod type_section;