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
* Marks the beginning of a merged transformed declaration.
1458
1469
*/
@@ -3486,31 +3497,30 @@ namespace ts {
3486
3497
3487
3498
/* @internal */
3488
3499
exportconstenumEmitFlags{
3489
-
UMDDefine=1<<4,// This node should be replaced with the UMD define helper.
3490
-
SingleLine=1<<5,// The contents of this node should be emitted on a single line.
3491
-
AdviseOnEmitNode=1<<6,// The printer should invoke the onEmitNode callback when printing this node.
3492
-
NoSubstitution=1<<7,// Disables further substitution of an expression.
3493
-
CapturesThis=1<<8,// The function captures a lexical `this`
3494
-
NoLeadingSourceMap=1<<9,// Do not emit a leading source map location for this node.
3495
-
NoTrailingSourceMap=1<<10,// Do not emit a trailing source map location for this node.
3500
+
SingleLine=1<<0,// The contents of this node should be emitted on a single line.
3501
+
AdviseOnEmitNode=1<<1,// The printer should invoke the onEmitNode callback when printing this node.
3502
+
NoSubstitution=1<<2,// Disables further substitution of an expression.
3503
+
CapturesThis=1<<3,// The function captures a lexical `this`
3504
+
NoLeadingSourceMap=1<<4,// Do not emit a leading source map location for this node.
3505
+
NoTrailingSourceMap=1<<5,// Do not emit a trailing source map location for this node.
3496
3506
NoSourceMap=NoLeadingSourceMap|NoTrailingSourceMap,// Do not emit a source map location for this node.
3497
-
NoNestedSourceMaps=1<<11,// Do not emit source map locations for children of this node.
3498
-
NoTokenLeadingSourceMaps=1<<12,// Do not emit leading source map location for token nodes.
3499
-
NoTokenTrailingSourceMaps=1<<13,// Do not emit trailing source map location for token nodes.
3507
+
NoNestedSourceMaps=1<<6,// Do not emit source map locations for children of this node.
3508
+
NoTokenLeadingSourceMaps=1<<7,// Do not emit leading source map location for token nodes.
3509
+
NoTokenTrailingSourceMaps=1<<8,// Do not emit trailing source map location for token nodes.
3500
3510
NoTokenSourceMaps=NoTokenLeadingSourceMaps|NoTokenTrailingSourceMaps,// Do not emit source map locations for tokens of this node.
3501
-
NoLeadingComments=1<<14,// Do not emit leading comments for this node.
3502
-
NoTrailingComments=1<<15,// Do not emit trailing comments for this node.
3511
+
NoLeadingComments=1<<9,// Do not emit leading comments for this node.
3512
+
NoTrailingComments=1<<10,// Do not emit trailing comments for this node.
3503
3513
NoComments=NoLeadingComments|NoTrailingComments,// Do not emit comments for this node.
3504
-
NoNestedComments=1<<16,
3505
-
ExportName=1<<17,// Ensure an export prefix is added for an identifier that points to an exported declaration with a local name (see SymbolFlags.ExportHasLocal).
3506
-
LocalName=1<<18,// Ensure an export prefix is not added for an identifier that points to an exported declaration.
3507
-
Indented=1<<19,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
3508
-
NoIndentation=1<<20,// Do not indent the node.
3509
-
AsyncFunctionBody=1<<21,
3510
-
ReuseTempVariableScope=1<<22,// Reuse the existing temp variable scope during emit.
3511
-
CustomPrologue=1<<23,// Treat the statement as if it were a prologue directive (NOTE: Prologue directives are *not* transformed).
3512
-
NoHoisting=1<<24,// Do not hoist this declaration in --module system
3513
-
HasEndOfDeclarationMarker=1<<25,// Declaration has an associated NotEmittedStatement to mark the end of the declaration
3514
+
NoNestedComments=1<<11,
3515
+
ExportName=1<<12,// Ensure an export prefix is added for an identifier that points to an exported declaration with a local name (see SymbolFlags.ExportHasLocal).
3516
+
LocalName=1<<13,// Ensure an export prefix is not added for an identifier that points to an exported declaration.
3517
+
Indented=1<<14,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
3518
+
NoIndentation=1<<15,// Do not indent the node.
3519
+
AsyncFunctionBody=1<<16,
3520
+
ReuseTempVariableScope=1<<17,// Reuse the existing temp variable scope during emit.
3521
+
CustomPrologue=1<<18,// Treat the statement as if it were a prologue directive (NOTE: Prologue directives are *not* transformed).
3522
+
NoHoisting=1<<19,// Do not hoist this declaration in --module system
3523
+
HasEndOfDeclarationMarker=1<<20,// Declaration has an associated NotEmittedStatement to mark the end of the declaration
0 commit comments