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

Function visitDoStatement

test/fixtures/snapshot/typescript.js:102871–102881  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

102869 }
102870 }
102871 function visitDoStatement(node) {
102872 if (inStatementContainingYield) {
102873 beginScriptLoopBlock();
102874 node = ts.visitEachChild(node, visitor, context);
102875 endLoopBlock();
102876 return node;
102877 }
102878 else {
102879 return ts.visitEachChild(node, visitor, context);
102880 }
102881 }
102882 function transformAndEmitWhileStatement(node) {
102883 if (containsYield(node)) {
102884 // [source]

Calls 2

beginScriptLoopBlockFunction · 0.85
endLoopBlockFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…