()
| 507 | } |
| 508 | |
| 509 | async refreshStackTrace() { |
| 510 | if (!this._pausedDetails) { |
| 511 | return; |
| 512 | } |
| 513 | |
| 514 | const event = this._pausedDetailsEvent.get(this._pausedDetails); |
| 515 | if (event) { |
| 516 | this._pausedDetails = this._createPausedDetails(event); |
| 517 | } |
| 518 | |
| 519 | this._onThreadResumed(); |
| 520 | await this._onThreadPaused(this._pausedDetails); |
| 521 | } |
| 522 | |
| 523 | // It is important to produce debug console output in the same order as it happens |
| 524 | // in the debuggee. Since we process any output asynchronously (e.g. retrieviing object |
no test coverage detected