Skip to content

Commit f8fd1fd

Browse files
committed
Cache isConstTypeVariable check
1 parent ccf252f commit f8fd1fd

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

src/compiler/checker.ts

+11-6
Original file line numberDiff line numberDiff line change
@@ -13212,11 +13212,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
1321213212
return hasNonCircularBaseConstraint(typeParameter) ? getConstraintFromTypeParameter(typeParameter) : undefined;
1321313213
}
1321413214

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-
1322013215
function getConstraintOfIndexedAccess(type: IndexedAccessType) {
1322113216
return hasNonCircularBaseConstraint(type) ? getConstraintFromIndexedAccess(type) : undefined;
1322213217
}
@@ -17037,6 +17032,15 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
1703717032
return !!(getGenericObjectFlags(type) & ObjectFlags.IsGenericIndexType);
1703817033
}
1703917034

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+
1704017044
function getGenericObjectFlags(type: Type): ObjectFlags {
1704117045
if (type.flags & TypeFlags.UnionOrIntersection) {
1704217046
if (!((type as UnionOrIntersectionType).objectFlags & ObjectFlags.IsGenericTypeComputed)) {
@@ -17053,7 +17057,8 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
1705317057
return (type as SubstitutionType).objectFlags & ObjectFlags.IsGenericType;
1705417058
}
1705517059
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);
1705717062
}
1705817063

1705917064
function getSimplifiedType(type: Type, writing: boolean): Type {

src/compiler/types.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -5922,22 +5922,24 @@ export const enum ObjectFlags {
59225922
/** @internal */
59235923
IsGenericIndexType = 1 << 23, // Union or intersection contains generic index type
59245924
/** @internal */
5925+
IsConstTypeVariable = 1 << 24, // Union or intersection contains const type parameter
5926+
/** @internal */
59255927
IsGenericType = IsGenericObjectType | IsGenericIndexType,
59265928

59275929
// Flags that require TypeFlags.Union
59285930
/** @internal */
5929-
ContainsIntersections = 1 << 24, // Union contains intersections
5931+
ContainsIntersections = 1 << 25, // Union contains intersections
59305932
/** @internal */
5931-
IsUnknownLikeUnionComputed = 1 << 25, // IsUnknownLikeUnion flag has been computed
5933+
IsUnknownLikeUnionComputed = 1 << 26, // IsUnknownLikeUnion flag has been computed
59325934
/** @internal */
5933-
IsUnknownLikeUnion = 1 << 26, // Union of null, undefined, and empty object type
5935+
IsUnknownLikeUnion = 1 << 27, // Union of null, undefined, and empty object type
59345936
/** @internal */
59355937

59365938
// Flags that require TypeFlags.Intersection
59375939
/** @internal */
5938-
IsNeverIntersectionComputed = 1 << 24, // IsNeverLike flag has been computed
5940+
IsNeverIntersectionComputed = 1 << 25, // IsNeverLike flag has been computed
59395941
/** @internal */
5940-
IsNeverIntersection = 1 << 25, // Intersection reduces to never
5942+
IsNeverIntersection = 1 << 26, // Intersection reduces to never
59415943
}
59425944

59435945
/** @internal */

0 commit comments

Comments
 (0)