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

Method remove_breakpoint

crates/debugger/src/host/api.rs:415–424  ·  view source on GitHub ↗
(
        &mut self,
        self_: Resource<Module>,
        d: Resource<Debuggee>,
        pc: u32,
    )

Source from the content-addressed store, hash-verified

413 }
414
415 async fn remove_breakpoint(
416 &mut self,
417 self_: Resource<Module>,
418 d: Resource<Debuggee>,
419 pc: u32,
420 ) -> Result<()> {
421 let module = self.get(&self_)?.clone();
422 let d = debugger(self, &d)?;
423 d.module_remove_breakpoint(module, pc).await
424 }
425
426 async fn bytecode(&mut self, self_: Resource<Module>) -> Result<Option<Vec<u8>>> {
427 let module = self.get(&self_)?;

Callers 1

Calls 4

debuggerFunction · 0.85
cloneMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected