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
@@ -6624,6 +6624,7 @@ namespace ts {
6624
6624
/*@internal*/TypeScriptClassWrapper=1<<25,// The node is an IIFE class wrapper created by the ts transform.
6625
6625
/*@internal*/NeverApplyImportHelper=1<<26,// Indicates the node should never be wrapped with an import star helper (because, for example, it imports tslib itself)
6626
6626
/*@internal*/IgnoreSourceNewlines=1<<27,// Overrides `printerOptions.preserveSourceNewlines` to print this node (and all descendants) with default whitespace.
6627
+
/*@internal*/Reusable=1<<28,// Marks this node as reusable across multiple transforms. Once marked reusable, no other emit flags or emit node values may be modified.
0 commit comments