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
2038
2037
CapturedBlockScopedBinding=0x00020000,// Block-scoped binding that is captured in some function
2039
2038
BlockScopedBindingInLoop=0x00040000,// Block-scoped binding with declaration nested inside iteration statement
2040
-
HasSeenSuperCall=0x00080000,// Set during the binding when encounter 'super'
2041
-
ClassWithBodyScopedClassBinding=0x00100000,// Decorated class that contains a binding to itself inside of the class body.
2042
-
BodyScopedClassBinding=0x00200000,// Binding to a decorated class inside of the class's body.
2043
-
NeedsLoopOutParameter=0x00400000,// Block scoped binding whose value should be explicitly copied outside of the converted loop
2039
+
ClassWithBodyScopedClassBinding=0x00080000,// Decorated class that contains a binding to itself inside of the class body.
2040
+
BodyScopedClassBinding=0x00100000,// Binding to a decorated class inside of the class's body.
2041
+
NeedsLoopOutParameter=0x00200000,// Block scoped binding whose value should be explicitly copied outside of the converted loop
2044
2042
}
2045
2043
2046
2044
/* @internal */
@@ -2060,6 +2058,8 @@ namespace ts {
2060
2058
importOnRightSide?: Symbol;// for import declarations - import that appear on the right side
2061
2059
jsxFlags?: JsxFlags;// flags for knowing what kind of element/attributes we're dealing with
2062
2060
resolvedJsxType?: Type;// resolved element attributes type of a JSX openinglike element
2061
+
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.
2062
+
superCall?: ExpressionStatement;// Cached first super-call found in the constructor. Used in checking whether super is called before this-accessing
0 commit comments