(info: MINode)
| 1739 | } |
| 1740 | |
| 1741 | protected handleBreak(info: MINode) { |
| 1742 | this.continuing = false; |
| 1743 | this.stopped = true; |
| 1744 | this.stoppedReason = 'step'; |
| 1745 | this.findPausedThread(info); |
| 1746 | this.notifyStoppedConditional(); |
| 1747 | } |
| 1748 | |
| 1749 | public sendEvent(event: DebugProtocol.Event): void { |
| 1750 | super.sendEvent(event); |
nothing calls this directly
no test coverage detected