Skip to content

Commit 3784b9b

Browse files
committed
Fix semicolon lint
1 parent b8dccff commit 3784b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12810,7 +12810,7 @@ namespace ts {
1281012810
const isPerformingCommonPropertyChecks = relation !== comparableRelation && !isIntersectionConstituent &&
1281112811
source.flags & (TypeFlags.Primitive | TypeFlags.Object | TypeFlags.Intersection) && source !== globalObjectType &&
1281212812
target.flags & (TypeFlags.Object | TypeFlags.Intersection) && isWeakType(target) &&
12813-
(getPropertiesOfType(source).length > 0 || typeHasCallOrConstructSignatures(source))
12813+
(getPropertiesOfType(source).length > 0 || typeHasCallOrConstructSignatures(source));
1281412814
if (isPerformingCommonPropertyChecks && !hasCommonProperties(source, target, isComparingJsxAttributes)) {
1281512815
if (reportErrors) {
1281612816
const calls = getSignaturesOfType(source, SignatureKind.Call);

0 commit comments

Comments
 (0)