(&self, store: &'a StoreOpaque)
| 514 | } |
| 515 | |
| 516 | pub(crate) fn wasmtime_ty<'a>(&self, store: &'a StoreOpaque) -> &'a wasmtime_environ::Table { |
| 517 | let module = store[self.instance].env_module(); |
| 518 | let index = module.table_index(self.index); |
| 519 | &module.tables[index] |
| 520 | } |
| 521 | |
| 522 | pub(crate) fn vmimport(&self, store: &StoreOpaque) -> vm::VMTableImport { |
| 523 | let instance = &store[self.instance]; |
no test coverage detected