(flags, antecedent, node)
| 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 }); |
no test coverage detected
searching dependent graphs…