(type1, type2)
| 58278 | setStructuredTypeMembers(type, emptySymbols, callSignatures, constructSignatures, indexInfos); |
| 58279 | } |
| 58280 | function intersectTypes(type1, type2) { |
| 58281 | return !type1 ? type2 : !type2 ? type1 : getIntersectionType([type1, type2]); |
| 58282 | } |
| 58283 | function findMixins(types) { |
| 58284 | var constructorTypeCount = ts.countWhere(types, function (t) { return getSignaturesOfType(t, 1 /* SignatureKind.Construct */).length > 0; }); |
| 58285 | var mixinFlags = ts.map(types, isMixinConstructorType); |
no test coverage detected
searching dependent graphs…