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
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2875,10 +2875,11 @@ namespace ts {
2875
2875
CapturesThis=1<<9,// The function captures a lexical `this`
2876
2876
NoSourceMap=1<<10,// Do not emit a source map location for this node.
2877
2877
NoNestedSourceMaps=1<<11,// Do not emit source map locations for children of this node.
2878
-
NoComments=1<<12,// Do not emit comments for this node.
2879
-
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).
2880
-
LocalName=1<<14,// Ensure an export prefix is not added for an identifier that points to an exported declaration.
2881
-
Indented=1<<15,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
2878
+
NoTokenSourceMaps=1<<12,// Do not emit source map locations for tokens of this node.
2879
+
NoComments=1<<13,// Do not emit comments for this node.
2880
+
ExportName=1<<14,// Ensure an export prefix is added for an identifier that points to an exported declaration with a local name (see SymbolFlags.ExportHasLocal).
2881
+
LocalName=1<<15,// Ensure an export prefix is not added for an identifier that points to an exported declaration.
2882
+
Indented=1<<16,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
2882
2883
}
2883
2884
2884
2885
/** Additional context provided to `visitEachChild` */
0 commit comments