()
| 65 | })(); |
| 66 | |
| 67 | async function pauseAndDumpStack() { |
| 68 | const {params:{callFrames, asyncStackTrace, asyncStackTraceId}} |
| 69 | = await Protocol.Debugger.oncePaused(); |
| 70 | session.logCallFrames(callFrames); |
| 71 | if (asyncStackTrace) |
| 72 | session.logAsyncStackTrace(asyncStackTrace); |
| 73 | if (asyncStackTraceId) |
| 74 | InspectorTest.log(' <external stack>'); |
| 75 | InspectorTest.log(''); |
| 76 | return Protocol.Debugger.resume(); |
| 77 | } |
no test coverage detected