MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / continue_

Method continue_

crates/debugger/src/host/api.rs:228–235  ·  view source on GitHub ↗
(
        &mut self,
        debuggee: Resource<Debuggee>,
        resumption: wit::ResumptionValue,
    )

Source from the content-addressed store, hash-verified

226 }
227
228 async fn continue_(
229 &mut self,
230 debuggee: Resource<Debuggee>,
231 resumption: wit::ResumptionValue,
232 ) -> Result<Resource<EventFuture>> {
233 let d = self.get_mut(&debuggee).unwrap().inner.take().unwrap();
234 Ok(self.push_child(EventFuture::new_continue(d, resumption), &debuggee)?)
235 }
236
237 async fn exit_frames(&mut self, debuggee: Resource<Debuggee>) -> Result<Vec<Resource<Frame>>> {
238 let d = debugger(self, &debuggee)?;

Callers 1

new_continueMethod · 0.45

Calls 5

OkFunction · 0.85
push_childMethod · 0.80
unwrapMethod · 0.45
takeMethod · 0.45
get_mutMethod · 0.45

Tested by

no test coverage detected