Skip to content

Commit 90382b2

Browse files
committed
Fix formatting
1 parent 22d1f68 commit 90382b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/compiler/checker.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19598,7 +19598,9 @@ namespace ts {
1959819598
}
1959919599
if (type.flags & TypeFlags.IndexedAccess) {
1960019600
// Identity is the leftmost object type in a chain of indexed accesses, eg, in A[P][Q] it is A
19601-
do { type = (type as IndexedAccessType).objectType } while (type.flags & TypeFlags.IndexedAccess);
19601+
do {
19602+
type = (type as IndexedAccessType).objectType;
19603+
} while (type.flags & TypeFlags.IndexedAccess);
1960219604
return type;
1960319605
}
1960419606
if (type.flags & TypeFlags.Conditional) {

0 commit comments

Comments
 (0)