@@ -13212,11 +13212,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
13212
13212
return hasNonCircularBaseConstraint(typeParameter) ? getConstraintFromTypeParameter(typeParameter) : undefined;
13213
13213
}
13214
13214
13215
- function isConstTypeVariable(type: Type): boolean {
13216
- return !!(type.flags & TypeFlags.TypeParameter && some((type as TypeParameter).symbol?.declarations, d => hasSyntacticModifier(d, ModifierFlags.Const)) ||
13217
- type.flags & TypeFlags.IndexedAccess && isConstTypeVariable((type as IndexedAccessType).objectType));
13218
- }
13219
-
13220
13215
function getConstraintOfIndexedAccess(type: IndexedAccessType) {
13221
13216
return hasNonCircularBaseConstraint(type) ? getConstraintFromIndexedAccess(type) : undefined;
13222
13217
}
@@ -17037,6 +17032,15 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
17037
17032
return !!(getGenericObjectFlags(type) & ObjectFlags.IsGenericIndexType);
17038
17033
}
17039
17034
17035
+ function isConstTypeVariable(type: Type): boolean {
17036
+ return !!(getGenericObjectFlags(type) & ObjectFlags.IsConstTypeVariable);
17037
+ }
17038
+
17039
+ function isConstTypeVariableWorker(type: Type): boolean {
17040
+ return !!(type.flags & TypeFlags.TypeParameter && some((type as TypeParameter).symbol?.declarations, d => hasSyntacticModifier(d, ModifierFlags.Const)) ||
17041
+ type.flags & TypeFlags.IndexedAccess && isConstTypeVariableWorker((type as IndexedAccessType).objectType));
17042
+ }
17043
+
17040
17044
function getGenericObjectFlags(type: Type): ObjectFlags {
17041
17045
if (type.flags & TypeFlags.UnionOrIntersection) {
17042
17046
if (!((type as UnionOrIntersectionType).objectFlags & ObjectFlags.IsGenericTypeComputed)) {
@@ -17053,7 +17057,8 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
17053
17057
return (type as SubstitutionType).objectFlags & ObjectFlags.IsGenericType;
17054
17058
}
17055
17059
return (type.flags & TypeFlags.InstantiableNonPrimitive || isGenericMappedType(type) || isGenericTupleType(type) ? ObjectFlags.IsGenericObjectType : 0) |
17056
- (type.flags & (TypeFlags.InstantiableNonPrimitive | TypeFlags.Index | TypeFlags.TemplateLiteral | TypeFlags.StringMapping) && !isPatternLiteralType(type) ? ObjectFlags.IsGenericIndexType : 0);
17060
+ (type.flags & (TypeFlags.InstantiableNonPrimitive | TypeFlags.Index | TypeFlags.TemplateLiteral | TypeFlags.StringMapping) && !isPatternLiteralType(type) ? ObjectFlags.IsGenericIndexType : 0) |
17061
+ (isConstTypeVariableWorker(type) ? ObjectFlags.IsConstTypeVariable : 0);
17057
17062
}
17058
17063
17059
17064
function getSimplifiedType(type: Type, writing: boolean): Type {
0 commit comments