()
| 272 | } |
| 273 | |
| 274 | waitForPauseOnStart() { |
| 275 | return this |
| 276 | .waitForNotification( |
| 277 | (notification) => |
| 278 | notification.method === 'Debugger.paused' && notification.params.reason === 'Break on start', |
| 279 | 'break on start'); |
| 280 | } |
| 281 | |
| 282 | pausedDetails() { |
| 283 | return this._pausedDetails; |
nothing calls this directly
no test coverage detected