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

Function createFlowMutation

test/fixtures/snapshot/typescript.js:45466–45473  ·  view source on GitHub ↗
(flags, antecedent, node)

Source from the content-addressed store, hash-verified

45464 return initFlowNode({ flags: 128 /* FlowFlags.SwitchClause */, antecedent: antecedent, switchStatement: switchStatement, clauseStart: clauseStart, clauseEnd: clauseEnd });
45465 }
45466 function createFlowMutation(flags, antecedent, node) {
45467 setFlowNodeReferenced(antecedent);
45468 var result = initFlowNode({ flags: flags, antecedent: antecedent, node: node });
45469 if (currentExceptionTarget) {
45470 addAntecedent(currentExceptionTarget, result);
45471 }
45472 return result;
45473 }
45474 function createFlowCall(antecedent, node) {
45475 setFlowNodeReferenced(antecedent);
45476 return initFlowNode({ flags: 512 /* FlowFlags.Call */, antecedent: antecedent, node: node });

Callers 4

bindAssignmentTargetFlowFunction · 0.85
onExitFunction · 0.85
bindCallExpressionFlowFunction · 0.85

Calls 3

setFlowNodeReferencedFunction · 0.85
initFlowNodeFunction · 0.85
addAntecedentFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…