(info: MINode)
| 136 | } |
| 137 | |
| 138 | protected stopEvent(info: MINode) { |
| 139 | if (!this.started) |
| 140 | this.crashed = true; |
| 141 | if (!this.quit) { |
| 142 | const event = new StoppedEvent("exception", parseInt(info.record("thread-id"))); |
| 143 | (event as DebugProtocol.StoppedEvent).body.allThreadsStopped = info.record("stopped-threads") == "all"; |
| 144 | this.sendEvent(event); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | protected threadCreatedEvent(info: MINode) { |
| 149 | this.sendEvent(new ThreadEvent("started", info.record("id"))); |