MCPcopy Index your code
hub / github.com/nodejs/node / clearBreakPoint

Method clearBreakPoint

deps/v8/test/debugger/test-api.js:128–136  ·  view source on GitHub ↗
(breakpoint)

Source from the content-addressed store, hash-verified

126 }
127
128 clearBreakPoint(breakpoint) {
129 assertTrue(this.breakpoints.has(breakpoint));
130 const breakid = breakpoint.id;
131 const {msgid, msg} = this.createMessage(
132 "Debugger.removeBreakpoint", { breakpointId : breakid });
133 this.sendMessage(msg);
134 this.takeReplyChecked(msgid);
135 this.breakpoints.delete(breakid);
136 }
137
138 clearAllBreakPoints() {
139 for (let breakpoint of this.breakpoints) {

Callers 15

clearAllBreakPointsMethod · 0.95
listenerFunction · 0.80
debug-step-3.jsFile · 0.80
listenerFunction · 0.80
debug-step-2.jsFile · 0.80
listenerFunction · 0.80

Calls 6

createMessageMethod · 0.95
sendMessageMethod · 0.95
takeReplyCheckedMethod · 0.95
hasMethod · 0.65
deleteMethod · 0.65
assertTrueFunction · 0.50

Tested by

no test coverage detected