Push a new table into this module's table index space.
(&mut self, table_type: wasmparser::TableType)
| 104 | |
| 105 | /// Push a new table into this module's table index space. |
| 106 | pub(crate) fn push_table(&mut self, table_type: wasmparser::TableType) { |
| 107 | self.tables.push(table_type); |
| 108 | } |
| 109 | |
| 110 | /// Push a new import into this module. |
| 111 | pub(crate) fn push_import(&mut self, import: wasmparser::Import<'a>) { |
no test coverage detected