()
| 915 | } |
| 916 | |
| 917 | async refreshStackTrace() { |
| 918 | if (!this._pausedDetails) { |
| 919 | return; |
| 920 | } |
| 921 | |
| 922 | this._pausedDetails = await this._createPausedDetails(this._pausedDetails.event); |
| 923 | this._onThreadResumed(); |
| 924 | await this._onThreadPaused(this._pausedDetails); |
| 925 | } |
| 926 | |
| 927 | private _executionContextCreated(description: Cdp.Runtime.ExecutionContextDescription) { |
| 928 | const context = new ExecutionContext(description); |
no test coverage detected