MCPcopy Index your code
hub / github.com/nodejs/node / logAsyncStackTrace

Method logAsyncStackTrace

deps/v8/test/inspector/protocol-test.js:387–394  ·  view source on GitHub ↗
(asyncStackTrace)

Source from the content-addressed store, hash-verified

385 }
386
387 logAsyncStackTrace(asyncStackTrace) {
388 while (asyncStackTrace) {
389 InspectorTest.log(`-- ${asyncStackTrace.description || '<empty>'} --`);
390 this.logCallFrames(asyncStackTrace.callFrames);
391 if (asyncStackTrace.parentId) InspectorTest.log(' <external stack>');
392 asyncStackTrace = asyncStackTrace.parent;
393 }
394 }
395
396 _sendCommandPromise(method, params) {
397 if (typeof params !== 'object')

Calls 2

logCallFramesMethod · 0.80
logMethod · 0.45

Tested by

no test coverage detected