(alternatives)
| 3605 | } |
| 3606 | } |
| 3607 | function formatDisjunction(alternatives) { |
| 3608 | return ts.map(alternatives, formatAlternative).join(" || ") || "*"; |
| 3609 | } |
| 3610 | function formatAlternative(comparators) { |
| 3611 | return ts.map(comparators, formatComparator).join(" "); |
| 3612 | } |
no test coverage detected
searching dependent graphs…