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-1
Original file line number
Diff line number
Diff line change
@@ -5106,7 +5106,7 @@ namespace ts {
5106
5106
jsxNamespace?: Symbol|false;// Resolved jsx namespace symbol for this node
5107
5107
jsxImplicitImportContainer?: Symbol|false;// Resolved module symbol the implicit jsx import of this file should refer to
5108
5108
contextFreeType?: Type;// Cached context-free type used by the first pass of inference; used when a function's return is partially contextually sensitive
5109
-
deferredNodes?: ESMap<NodeId,Node>;// Set of nodes whose checking has been deferred
5109
+
deferredNodes?: Set<Node>;// Set of nodes whose checking has been deferred
5110
5110
capturedBlockScopeBindings?: Symbol[];// Block-scoped bindings captured beneath this part of an IterationStatement
5111
5111
outerTypeParameters?: TypeParameter[];// Outer type parameters of anonymous object type
5112
5112
isExhaustive?: boolean;// Is node an exhaustive switch statement
0 commit comments