(flow)
| 45476 | return initFlowNode({ flags: 512 /* FlowFlags.Call */, antecedent: antecedent, node: node }); |
| 45477 | } |
| 45478 | function finishFlowLabel(flow) { |
| 45479 | var antecedents = flow.antecedents; |
| 45480 | if (!antecedents) { |
| 45481 | return unreachableFlow; |
| 45482 | } |
| 45483 | if (antecedents.length === 1) { |
| 45484 | return antecedents[0]; |
| 45485 | } |
| 45486 | return flow; |
| 45487 | } |
| 45488 | function isStatementCondition(node) { |
| 45489 | var parent = node.parent; |
| 45490 | switch (parent.kind) { |
no outgoing calls
no test coverage detected