(pauseEvent: VMEvent)
| 364 | } |
| 365 | |
| 366 | public handlePaused(pauseEvent: VMEvent) { |
| 367 | this.atAsyncSuspension = pauseEvent.atAsyncSuspension === true; |
| 368 | if (pauseEvent.exception) { |
| 369 | const exception = pauseEvent.exception; |
| 370 | (exception as InstanceWithEvaluateName).evaluateName = "$_threadException"; |
| 371 | this.exceptionReference = this.storeData(exception); |
| 372 | } |
| 373 | this.paused = true; |
| 374 | this.pauseEvent = pauseEvent; |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | interface StorableData { |
no test coverage detected