(entryPoint: string)
| 577 | } |
| 578 | |
| 579 | setEntryBreakPoint(entryPoint: string): Thenable<any> { |
| 580 | return this.sendCommand("break-insert -t -f " + entryPoint); |
| 581 | } |
| 582 | |
| 583 | addBreakPoint(breakpoint: Breakpoint): Thenable<[boolean, Breakpoint]> { |
| 584 | if (trace) |
no test coverage detected