Push a new function into this module's function index space.
(&mut self, func_type: u32)
| 99 | |
| 100 | /// Push a new function into this module's function index space. |
| 101 | pub(crate) fn push_function(&mut self, func_type: u32) { |
| 102 | self.functions.push(func_type); |
| 103 | } |
| 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) { |
no test coverage detected