MCPcopy Create free account
hub / github.com/WebFreak001/code-debug / loadBreakPoints

Method loadBreakPoints

src/backend/mi2/mi2.ts:563–571  ·  view source on GitHub ↗
(breakpoints: Breakpoint[])

Source from the content-addressed store, hash-verified

561 }
562
563 loadBreakPoints(breakpoints: Breakpoint[]): Thenable<[boolean, Breakpoint][]> {
564 if (trace)
565 this.log("stderr", "loadBreakPoints");
566 const promisses = [];
567 breakpoints.forEach(breakpoint => {
568 promisses.push(this.addBreakPoint(breakpoint));
569 });
570 return Promise.all(promisses);
571 }
572
573 setBreakPointCondition(bkptNum, condition): Thenable<any> {
574 if (trace)

Callers

nothing calls this directly

Calls 2

logMethod · 0.95
addBreakPointMethod · 0.95

Tested by

no test coverage detected