(loc: Cdp.Debugger.Location)
| 788 | } |
| 789 | |
| 790 | async renderDebuggerLocation(loc: Cdp.Debugger.Location): Promise<string> { |
| 791 | const raw = this.rawLocation(loc); |
| 792 | const ui = await this.rawLocationToUiLocation(raw); |
| 793 | if (ui) return `@ ${await ui.source.prettyName()}:${ui.lineNumber}`; |
| 794 | return `@ VM${raw.scriptId || 'XX'}:${raw.lineNumber}`; |
| 795 | } |
| 796 | |
| 797 | async setPauseOnExceptionsState(state: PauseOnExceptionsState): Promise<void> { |
| 798 | await this._cdp.Debugger.setPauseOnExceptions({ state }); |
nothing calls this directly
no test coverage detected