(&mut self)
| 154 | } |
| 155 | |
| 156 | async fn exit_frames(&mut self) -> Result<Vec<FrameHandle>> { |
| 157 | self.with_store(|mut store| store.debug_exit_frames().collect::<Vec<_>>()) |
| 158 | .await |
| 159 | } |
| 160 | |
| 161 | async fn get_instance_module(&mut self, instance: Instance) -> Result<Module> { |
| 162 | self.with_store(move |store| instance.module(&store).clone()) |
nothing calls this directly
no test coverage detected