Skip to content

Commit 797fbab

Browse files
committed
Correct sort order
1 parent 37eaa03 commit 797fbab

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
@@ -53979,7 +53979,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
5397953979
if (c !== 0) {
5398053980
return c;
5398153981
}
53982-
c = (t1 as IndexType).flags - (t2 as IndexType).flags;
53982+
c = (t1 as IndexType).indexFlags - (t2 as IndexType).indexFlags;
5398353983
if (c !== 0) {
5398453984
return c;
5398553985
}

0 commit comments

Comments
 (0)