(
module: &mut ModuleContext<'a>,
tables: wasmparser::TableSectionReader<'a>,
)
| 75 | } |
| 76 | |
| 77 | fn table_section<'a>( |
| 78 | module: &mut ModuleContext<'a>, |
| 79 | tables: wasmparser::TableSectionReader<'a>, |
| 80 | ) -> wasmtime::Result<()> { |
| 81 | for table in tables { |
| 82 | module.push_table(table?.ty); |
| 83 | } |
| 84 | Ok(()) |
| 85 | } |
| 86 | |
| 87 | fn memory_section<'a>( |
| 88 | module: &mut ModuleContext<'a>, |
no test coverage detected