(signatures)
| 73179 | } |
| 73180 | } |
| 73181 | function getIntersectedSignatures(signatures) { |
| 73182 | return ts.getStrictOptionValue(compilerOptions, "noImplicitAny") |
| 73183 | ? ts.reduceLeft(signatures, function (left, right) { |
| 73184 | return left === right || !left ? left |
| 73185 | : compareTypeParametersIdentical(left.typeParameters, right.typeParameters) ? combineSignaturesOfIntersectionMembers(left, right) |
| 73186 | : undefined; |
| 73187 | }) |
| 73188 | : undefined; |
| 73189 | } |
| 73190 | function combineIntersectionThisParam(left, right, mapper) { |
| 73191 | if (!left || !right) { |
| 73192 | return left || right; |
no test coverage detected
searching dependent graphs…