File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -12810,7 +12810,7 @@ namespace ts {
12810
12810
const isPerformingCommonPropertyChecks = relation !== comparableRelation && !isIntersectionConstituent &&
12811
12811
source.flags & (TypeFlags.Primitive | TypeFlags.Object | TypeFlags.Intersection) && source !== globalObjectType &&
12812
12812
target.flags & (TypeFlags.Object | TypeFlags.Intersection) && isWeakType(target) &&
12813
- (getPropertiesOfType(source).length > 0 || typeHasCallOrConstructSignatures(source))
12813
+ (getPropertiesOfType(source).length > 0 || typeHasCallOrConstructSignatures(source));
12814
12814
if (isPerformingCommonPropertyChecks && !hasCommonProperties(source, target, isComparingJsxAttributes)) {
12815
12815
if (reportErrors) {
12816
12816
const calls = getSignaturesOfType(source, SignatureKind.Call);
You can’t perform that action at this time.
0 commit comments