export section

This commit is contained in:
NikVolf
2017-03-31 01:54:04 +03:00
parent 7b6ea0a152
commit 9e3823c3f2
5 changed files with 124 additions and 3 deletions

View File

@@ -19,6 +19,9 @@ fn main() {
&Section::Import(ref import_section) => {
println!("Imports {}", import_section.entries().len());
},
&Section::Export(ref exports_section) => {
println!("Exports {}", exports_section.entries().len());
},
&Section::Function(ref functions_section) => {
println!("Functions {}", functions_section.entries().len());
},