(&mut self, instance: Instance, idx: u32)
| 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)) |
| 191 | .await |
| 192 | } |
| 193 | |
| 194 | async fn instance_get_tag(&mut self, instance: Instance, idx: u32) -> Result<Option<Tag>> { |
| 195 | self.with_store(move |mut store| instance.debug_tag(&mut store, idx)) |
no test coverage detected