(&mut self, frame: FrameHandle)
| 489 | } |
| 490 | |
| 491 | async fn frame_instance(&mut self, frame: FrameHandle) -> Result<Instance> { |
| 492 | self.with_store(move |mut store| -> Result<Instance> { |
| 493 | Ok(frame |
| 494 | .instance(&mut store) |
| 495 | .map_err(|_| wit::Error::InvalidFrame)?) |
| 496 | }) |
| 497 | .await? |
| 498 | } |
| 499 | |
| 500 | async fn frame_func_and_pc(&mut self, frame: FrameHandle) -> Result<(u32, u32)> { |
| 501 | self.with_store(move |mut store| -> Result<(u32, u32)> { |
no test coverage detected