(info: MINode)
| 1688 | } |
| 1689 | |
| 1690 | protected handleBreakpoint(info: MINode) { |
| 1691 | this.continuing = false; |
| 1692 | this.stopped = true; |
| 1693 | this.stoppedReason = 'breakpoint'; |
| 1694 | this.findPausedThread(info); |
| 1695 | this.notifyStoppedConditional(); |
| 1696 | } |
| 1697 | |
| 1698 | private notifyStoppedConditional() { |
| 1699 | if (!this.disableSendStoppedEvents) { |
nothing calls this directly
no test coverage detected