(&mut self)
| 131 | } |
| 132 | |
| 133 | async fn continue_(&mut self) -> Result<crate::DebugRunResult> { |
| 134 | self.with_store(|store| { |
| 135 | store |
| 136 | .edit_breakpoints() |
| 137 | .unwrap() |
| 138 | .single_step(false) |
| 139 | .unwrap() |
| 140 | }) |
| 141 | .await?; |
| 142 | |
| 143 | self.run().await |
| 144 | } |
| 145 | |
| 146 | async fn handle_resumption(&mut self, resumption: &wit::ResumptionValue) -> Result<()> { |
| 147 | match resumption { |
nothing calls this directly
no test coverage detected