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
LoopWithCapturedBlockScopedBinding=0x00010000,// Loop that contains block scoped variable captured in closure
2069
2068
CapturedBlockScopedBinding=0x00020000,// Block-scoped binding that is captured in some function
2070
2069
BlockScopedBindingInLoop=0x00040000,// Block-scoped binding with declaration nested inside iteration statement
2071
-
HasSeenSuperCall=0x00080000,// Set during the binding when encounter 'super'
2072
-
ClassWithBodyScopedClassBinding=0x00100000,// Decorated class that contains a binding to itself inside of the class body.
2073
-
BodyScopedClassBinding=0x00200000,// Binding to a decorated class inside of the class's body.
2074
-
NeedsLoopOutParameter=0x00400000,// Block scoped binding whose value should be explicitly copied outside of the converted loop
2070
+
ClassWithBodyScopedClassBinding=0x0080000,// Decorated class that contains a binding to itself inside of the class body.
2071
+
BodyScopedClassBinding=0x00100000,// Binding to a decorated class inside of the class's body.
2072
+
NeedsLoopOutParameter=0x00200000,// Block scoped binding whose value should be explicitly copied outside of the converted loop
2075
2073
}
2076
2074
2077
2075
/* @internal */
@@ -2090,6 +2088,8 @@ namespace ts {
2090
2088
importOnRightSide?: Symbol;// for import declarations - import that appear on the right side
2091
2089
jsxFlags?: JsxFlags;// flags for knowning what kind of element/attributes we're dealing with
2092
2090
resolvedJsxType?: Type;// resolved element attributes type of a JSX openinglike element
2091
+
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.
2092
+
superCall?: ExpressionStatement;// Cached first super-call found in the constructor. Used in checking whether super is called before this-accessing
0 commit comments