You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4063,7 +4063,6 @@ namespace ts {
4063
4063
nameType?: Type;// Type associated with a late-bound symbol
4064
4064
uniqueESSymbolType?: Type;// UniqueESSymbol type for a symbol
4065
4065
declaredType?: Type;// Type of class, interface, enum, type alias, or type parameter
4066
-
resolvedJSDocType?: Type;// Resolved type of a JSDoc type reference
4067
4066
typeParameters?: TypeParameter[];// Type parameters of type alias (undefined if non-generic)
4068
4067
outerTypeParameters?: TypeParameter[];// Outer type parameters of anonymous object type
4069
4068
instantiations?: Map<Type>;// Instantiations of generic type alias (undefined if non-generic)
@@ -4239,6 +4238,7 @@ namespace ts {
4239
4238
jsxFlags: JsxFlags;// flags for knowing what kind of element/attributes we're dealing with
4240
4239
resolvedJsxElementAttributesType?: Type;// resolved element attributes type of a JSX openinglike element
4241
4240
resolvedJsxElementAllAttributesType?: Type;// resolved all element attributes type of a JSX openinglike element
4241
+
resolvedJSDocType?: Type;// Resolved type of a JSDoc type reference
4242
4242
hasSuperCall?: boolean;// recorded result when we try to find super-call. We only try to find one if this flag is undefined, indicating that we haven't made an attempt.
4243
4243
superCall?: SuperCall;// Cached first super-call found in the constructor. Used in checking whether super is called before this-accessing
4244
4244
switchTypes?: Type[];// Cached array of switch case expression types
0 commit comments