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
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2943,10 +2943,11 @@ namespace ts {
2943
2943
Indented=1<<18,// Adds an explicit extra indentation level for class and function bodies when printing (used to match old emitter).
2944
2944
2945
2945
// SourceMap Specialization.
2946
-
// TODO(rbuckton): This should be removed once source maps are aligned with the old
2946
+
// TODO(rbuckton): These should be removed once source maps are aligned with the old
2947
2947
// emitter and new baselines are taken. This exists solely to
2948
2948
// align with the old emitter.
2949
-
SourceMapEmitOpenBraceAsToken=1<<19,
2949
+
SourceMapEmitOpenBraceAsToken=1<<19,// Emits the open brace of a block function body as a source mapped token.
2950
+
SourceMapAdjustRestParameterLoop=1<<20,// Emits adjusted source map positions for a ForStatement generated when transforming a rest parameter for ES5/3.
2950
2951
}
2951
2952
2952
2953
/** Additional context provided to `visitEachChild` */
0 commit comments