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
// TODO: GH#18217 `xToDeclaration` calls are frequently asserted as defined.
3198
3199
/** Note that the resulting nodes cannot be checked. */
@@ -4027,6 +4028,8 @@ namespace ts {
4027
4028
contextFreeType?: Type;// Cached context-free type used by the first pass of inference; used when a function's return is partially contextually sensitive
4028
4029
deferredNodes?: Map<Node>;// Set of nodes whose checking has been deferred
4029
4030
capturedBlockScopeBindings?: Symbol[];// Block-scoped bindings captured beneath this part of an IterationStatement
4031
+
outerTypeParameters?: TypeParameter[];// Outer type parameters of anonymous object type
4032
+
instantiations?: Map<Type>;// Instantiations of generic type alias (undefined if non-generic)
4030
4033
isExhaustive?: boolean;// Is node an exhaustive switch statement
4031
4034
}
4032
4035
@@ -4274,11 +4277,22 @@ namespace ts {
4274
4277
*/
4275
4278
exportinterfaceTypeReferenceextendsObjectType{
4276
4279
target: GenericType;// Type reference target
4277
-
typeArguments?: readonlyType[];// Type reference type arguments (undefined if none)
0 commit comments