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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2795,7 +2795,7 @@ namespace ts {
2795
2795
EmitSuperHelper=1<<2,// Emit the basic _super helper for async methods.
2796
2796
EmitAdvancedSuperHelper=1<<3,// Emit the advanced _super helper for async methods.
2797
2797
UMDDefine=1<<4,// This node should be replaced with the UMD define helper.
2798
-
NoLexicalEnvironment=1<<5,// A new LexicalEnvironment should *not* be introduced when emitting this node.
2798
+
NoLexicalEnvironment=1<<5,// A new LexicalEnvironment should *not* be introduced when emitting this node, this is primarily used when printing a SystemJS module.
2799
2799
SingleLine=1<<6,// The contents of this node should be emit on a single line.
2800
2800
MultiLine=1<<7,// The contents of this node should be emit on multiple lines.
2801
2801
AdviseOnEmitNode=1<<8,// The node printer should invoke the onBeforeEmitNode and onAfterEmitNode callbacks when printing this node.
0 commit comments