(doCustom = true)
| 757 | } |
| 758 | |
| 759 | private notifyStopped(doCustom = true) { |
| 760 | this.sendEvent(new StoppedEvent(this.stoppedReason, this.currentThreadId, true)); |
| 761 | if (doCustom) { |
| 762 | this.sendEvent(new CustomStoppedEvent(this.stoppedReason, this.currentThreadId)); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | private startCompleteForReset(mode: SessionMode, sendStoppedEvents = true) { |
| 767 | if ((mode !== SessionMode.ATTACH) && (mode !== SessionMode.LAUNCH)) { |
no test coverage detected