(
&mut self,
instance: Instance,
idx: u32,
)
| 164 | } |
| 165 | |
| 166 | async fn instance_get_memory( |
| 167 | &mut self, |
| 168 | instance: Instance, |
| 169 | idx: u32, |
| 170 | ) -> Result<Option<Memory>> { |
| 171 | self.with_store(move |mut store| instance.debug_memory(&mut store, idx)) |
| 172 | .await |
| 173 | } |
| 174 | |
| 175 | async fn instance_get_global( |
| 176 | &mut self, |
no test coverage detected