(label, antecedent)
| 45436 | flow.flags |= flow.flags & 2048 /* FlowFlags.Referenced */ ? 4096 /* FlowFlags.Shared */ : 2048 /* FlowFlags.Referenced */; |
| 45437 | } |
| 45438 | function addAntecedent(label, antecedent) { |
| 45439 | if (!(antecedent.flags & 1 /* FlowFlags.Unreachable */) && !ts.contains(label.antecedents, antecedent)) { |
| 45440 | (label.antecedents || (label.antecedents = [])).push(antecedent); |
| 45441 | setFlowNodeReferenced(antecedent); |
| 45442 | } |
| 45443 | } |
| 45444 | function createFlowCondition(flags, antecedent, expression) { |
| 45445 | if (antecedent.flags & 1 /* FlowFlags.Unreachable */) { |
| 45446 | return antecedent; |
no test coverage detected