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
resolvedSignature?: Signature;// Cached signature of signature node or call expression
6210
6214
resolvedSymbol?: Symbol;// Cached name resolution result
6211
-
resolvedIndexInfo?: IndexInfo;// Cached indexing info resolution result
6212
6215
effectsSignature?: Signature;// Signature with possible control flow effects
6213
6216
enumMemberValue?: EvaluatorResult;// Constant value of enum member
6214
6217
isVisible?: boolean;// Is this node visible
6215
6218
containsArgumentsReference?: boolean;// Whether a function-like declaration contains an 'arguments' reference
6216
6219
hasReportedStatementInAmbientContext?: boolean;// Cache boolean if we report statements in ambient context
6217
6220
jsxFlags: JsxFlags;// flags for knowing what kind of element/attributes we're dealing with
6218
6221
resolvedJsxElementAttributesType?: Type;// resolved element attributes type of a JSX openinglike element
6219
-
resolvedJsxElementAllAttributesType?: Type;// resolved all element attributes type of a JSX openinglike element
6220
6222
resolvedJSDocType?: Type;// Resolved type of a JSDoc type reference
6221
6223
switchTypes?: Type[];// Cached array of switch case expression types
6222
6224
jsxNamespace?: Symbol|false;// Resolved jsx namespace symbol for this node
6223
6225
jsxImplicitImportContainer?: Symbol|false;// Resolved module symbol the implicit jsx import of this file should refer to
6226
+
jsxFragmentType?: Type;// Type of the JSX fragment element, set per SourceFile if a jsxFragment is checked in the file
6224
6227
contextFreeType?: Type;// Cached context-free type used by the first pass of inference; used when a function's return is partially contextually sensitive
6225
6228
deferredNodes?: Set<Node>;// Set of nodes whose checking has been deferred
6226
6229
capturedBlockScopeBindings?: Symbol[];// Block-scoped bindings captured beneath this part of an IterationStatement
0 commit comments