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
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4185,6 +4185,7 @@ namespace ts {
4185
4185
HasEndOfDeclarationMarker=1<<22,// Declaration has an associated NotEmittedStatement to mark the end of the declaration
4186
4186
Iterator=1<<23,// The expression to a `yield*` should be treated as an Iterator when down-leveling, not an Iterable.
4187
4187
NoAsciiEscaping=1<<24,// When synthesizing nodes that lack an original node or textSourceNode, we want to write the text on the node with ASCII escaping substitutions.
4188
+
/*@internal*/TypeScriptClassWrapper=1<<25,// The node is an IIFE class wrapper created by the ts transform.
0 commit comments