()
| 537 | } |
| 538 | |
| 539 | async _refreshStackTrace() { |
| 540 | if (!this._thread) return; |
| 541 | const details = this._thread.pausedDetails(); |
| 542 | if (details) await this._thread.refreshStackTrace(); |
| 543 | } |
| 544 | |
| 545 | createThread(cdp: Cdp.Api, target: ITarget): Thread { |
| 546 | this._thread = new Thread( |
no test coverage detected