We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80963ba commit 4087808Copy full SHA for 4087808
src/compiler/checker.ts
@@ -5235,7 +5235,7 @@ namespace ts {
5235
}
5236
5237
function createTupleType(elementTypes: Type[], thisType?: Type) {
5238
- const id = getTypeListId(elementTypes) + ',' + (thisType ? thisType.id : 0);
+ const id = getTypeListId(elementTypes) + "," + (thisType ? thisType.id : 0);
5239
return tupleTypes[id] || (tupleTypes[id] = createNewTupleType(elementTypes, thisType));
5240
5241
0 commit comments