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
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3940,14 +3940,15 @@ namespace ts {
3940
3940
HelperName=1<<12,
3941
3941
ExportName=1<<13,// Ensure an export prefix is added for an identifier that points to an exported declaration with a local name (see SymbolFlags.ExportHasLocal).
3942
3942
LocalName=1<<14,// Ensure an export prefix is not added for an identifier that points to an exported declaration.
3943
-
Indented=1<<15,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
3944
-
NoIndentation=1<<16,// Do not indent the node.
3945
-
AsyncFunctionBody=1<<17,
3946
-
ReuseTempVariableScope=1<<18,// Reuse the existing temp variable scope during emit.
3947
-
CustomPrologue=1<<19,// Treat the statement as if it were a prologue directive (NOTE: Prologue directives are *not* transformed).
3948
-
NoHoisting=1<<20,// Do not hoist this declaration in --module system
3949
-
HasEndOfDeclarationMarker=1<<21,// Declaration has an associated NotEmittedStatement to mark the end of the declaration
3950
-
Iterator=1<<22,// The expression to a `yield*` should be treated as an Iterator when down-leveling, not an Iterable.
3943
+
InternalName=1<<15,// The name is internal to an ES5 class body function.
3944
+
Indented=1<<16,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
3945
+
NoIndentation=1<<17,// Do not indent the node.
3946
+
AsyncFunctionBody=1<<18,
3947
+
ReuseTempVariableScope=1<<19,// Reuse the existing temp variable scope during emit.
3948
+
CustomPrologue=1<<20,// Treat the statement as if it were a prologue directive (NOTE: Prologue directives are *not* transformed).
3949
+
NoHoisting=1<<21,// Do not hoist this declaration in --module system
3950
+
HasEndOfDeclarationMarker=1<<22,// Declaration has an associated NotEmittedStatement to mark the end of the declaration
3951
+
Iterator=1<<23,// The expression to a `yield*` should be treated as an Iterator when down-leveling, not an Iterable.
0 commit comments