(
&mut self,
debuggee: Resource<Debuggee>,
resumption: wit::ResumptionValue,
)
| 217 | } |
| 218 | |
| 219 | async fn single_step( |
| 220 | &mut self, |
| 221 | debuggee: Resource<Debuggee>, |
| 222 | resumption: wit::ResumptionValue, |
| 223 | ) -> Result<Resource<EventFuture>> { |
| 224 | let d = self.get_mut(&debuggee).unwrap().inner.take().unwrap(); |
| 225 | Ok(self.push_child(EventFuture::new_single_step(d, resumption), &debuggee)?) |
| 226 | } |
| 227 | |
| 228 | async fn continue_( |
| 229 | &mut self, |
no test coverage detected