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

Function setContinueTarget

test/fixtures/snapshot/typescript.js:45554–45562  ·  view source on GitHub ↗
(node, target)

Source from the content-addressed store, hash-verified

45552 currentContinueTarget = saveContinueTarget;
45553 }
45554 function setContinueTarget(node, target) {
45555 var label = activeLabelList;
45556 while (label && node.parent.kind === 250 /* SyntaxKind.LabeledStatement */) {
45557 label.continueTarget = target;
45558 label = label.next;
45559 node = node.parent;
45560 }
45561 return target;
45562 }
45563 function bindWhileStatement(node) {
45564 var preWhileLabel = setContinueTarget(node, createLoopLabel());
45565 var preBodyLabel = createBranchLabel();

Callers 4

bindWhileStatementFunction · 0.85
bindDoStatementFunction · 0.85
bindForStatementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected