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
@@ -3372,7 +3372,7 @@ namespace ts {
3372
3372
resolvedJsxElementAttributesType?: Type;// resolved element attributes type of a JSX openinglike element
3373
3373
resolvedJsxElementAllAttributesType?: Type;// resolved all element attributes type of a JSX openinglike element
3374
3374
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.
3375
-
superCall?: ExpressionStatement;// Cached first super-call found in the constructor. Used in checking whether super is called before this-accessing
3375
+
superCall?: SuperCall;// Cached first super-call found in the constructor. Used in checking whether super is called before this-accessing
3376
3376
switchTypes?: Type[];// Cached array of switch case expression types
0 commit comments