(bkptNum, condition)
| 571 | } |
| 572 | |
| 573 | setBreakPointCondition(bkptNum, condition): Thenable<any> { |
| 574 | if (trace) |
| 575 | this.log("stderr", "setBreakPointCondition"); |
| 576 | return this.sendCommand("break-condition " + bkptNum + " " + condition); |
| 577 | } |
| 578 | |
| 579 | setEntryBreakPoint(entryPoint: string): Thenable<any> { |
| 580 | return this.sendCommand("break-insert -t -f " + entryPoint); |
no test coverage detected