(&mut self, instance: Instance, idx: u32)
| 182 | } |
| 183 | |
| 184 | async fn instance_get_table(&mut self, instance: Instance, idx: u32) -> Result<Option<Table>> { |
| 185 | self.with_store(move |mut store| instance.debug_table(&mut store, idx)) |
| 186 | .await |
| 187 | } |
| 188 | |
| 189 | async fn instance_get_func(&mut self, instance: Instance, idx: u32) -> Result<Option<Func>> { |
| 190 | self.with_store(move |mut store| instance.debug_function(&mut store, idx)) |
no test coverage detected