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

Function visitContinueStatement

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

Source from the content-addressed store, hash-verified

103090 }
103091 }
103092 function visitContinueStatement(node) {
103093 if (inStatementContainingYield) {
103094 var label = findContinueTarget(node.label && ts.idText(node.label));
103095 if (label > 0) {
103096 return createInlineBreak(label, /*location*/ node);
103097 }
103098 }
103099 return ts.visitEachChild(node, visitor, context);
103100 }
103101 function transformAndEmitBreakStatement(node) {
103102 var label = findBreakTarget(node.label ? ts.idText(node.label) : undefined);
103103 if (label > 0) {

Calls 2

findContinueTargetFunction · 0.85
createInlineBreakFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…