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
Original file line number
Diff line number
Diff line change
@@ -6732,6 +6732,7 @@ namespace ts {
6732
6732
/*@internal*/NeverApplyImportHelper=1<<26,// Indicates the node should never be wrapped with an import star helper (because, for example, it imports tslib itself)
6733
6733
/*@internal*/IgnoreSourceNewlines=1<<27,// Overrides `printerOptions.preserveSourceNewlines` to print this node (and all descendants) with default whitespace.
6734
6734
/*@internal*/Immutable=1<<28,// Indicates a node is a singleton intended to be reused in multiple locations. Any attempt to make further changes to the node will result in an error.
6735
+
/*@internal*/IndirectCall=1<<29,// Emit CallExpression as an indirect call: `(0, f)()`
0 commit comments