(info: MINode)
| 130 | } |
| 131 | |
| 132 | protected handlePause(info: MINode) { |
| 133 | const event = new StoppedEvent("user request", parseInt(info.record("thread-id"))); |
| 134 | (event as DebugProtocol.StoppedEvent).body.allThreadsStopped = info.record("stopped-threads") == "all"; |
| 135 | this.sendEvent(event); |
| 136 | } |
| 137 | |
| 138 | protected stopEvent(info: MINode) { |
| 139 | if (!this.started) |
no test coverage detected