(info: MINode)
| 1754 | } |
| 1755 | |
| 1756 | protected handlePause(info: MINode) { |
| 1757 | this.continuing = false; |
| 1758 | this.stopped = true; |
| 1759 | this.stoppedReason = 'user request'; |
| 1760 | this.findPausedThread(info); |
| 1761 | this.notifyStoppedConditional(); |
| 1762 | } |
| 1763 | |
| 1764 | protected handleThreadCreated(info: { threadId: number, threadGroupId: string }) { |
| 1765 | if (!this.activeThreadIds.has(info.threadId)) { |
nothing calls this directly
no test coverage detected