Return the indexed `VMFunctionImport`.
(&self, index: FuncIndex)
| 418 | |
| 419 | /// Return the indexed `VMFunctionImport`. |
| 420 | fn imported_function(&self, index: FuncIndex) -> &VMFunctionImport { |
| 421 | unsafe { self.vmctx_plus_offset(self.offsets().vmctx_vmfunction_import(index)) } |
| 422 | } |
| 423 | |
| 424 | /// Return the index `VMTableImport`. |
| 425 | fn imported_table(&self, index: TableIndex) -> &VMTableImport { |
no test coverage detected