(breakpoints: Breakpoint[])
| 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) |
nothing calls this directly
no test coverage detected