Skip to content

Commit

Permalink
Fix stray edit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbranch committed May 12, 2022
1 parent c923baf commit 7e8c56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22407,7 +22407,7 @@ namespace ts {
inferFromTypes((source as IndexedAccessType).objectType, (target as IndexedAccessType).objectType);
inferFromTypes((source as IndexedAccessType).indexType, (target as IndexedAccessType).indexType);
}
else if (source. flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
else if (source.flags & TypeFlags.StringMapping && target.flags & TypeFlags.StringMapping) {
if ((source as StringMappingType).symbol === (target as StringMappingType).symbol) {
inferFromTypes((source as StringMappingType).type, (target as StringMappingType).type);
}
Expand Down

0 comments on commit 7e8c56c

Please sign in to comment.