(ref: VMIsolateRef)
| 204 | } |
| 205 | |
| 206 | public handleIsolateExit(ref: VMIsolateRef) { |
| 207 | const threadInfo = this.getThreadInfoFromRef(ref); |
| 208 | if (threadInfo) { |
| 209 | this.debugSession.sendEvent(new ThreadEvent("exited", threadInfo.num)); |
| 210 | this.threads.splice(this.threads.indexOf(threadInfo), 1); |
| 211 | this.removeStoredData(threadInfo); |
| 212 | } |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | class StoredData { |
no test coverage detected