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

Method continue_

crates/debugger/src/host/opaque.rs:133–144  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 5

with_storeMethod · 0.80
edit_breakpointsMethod · 0.80
unwrapMethod · 0.45
single_stepMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected