(session, notification)
| 28 | } |
| 29 | |
| 30 | function debuggerPausedCallback(session, notification) { |
| 31 | const params = notification.params; |
| 32 | const callFrame = params.callFrames[0]; |
| 33 | const scopeId = callFrame.scopeChain[0].object.objectId; |
| 34 | checkScope(session, scopeId); |
| 35 | } |
| 36 | |
| 37 | function waitForWarningSkipAsyncStackTraces(resolve) { |
| 38 | process.once('warning', function(warning) { |
no test coverage detected