File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1053,8 +1053,11 @@ namespace ts.textChanges {
10531053 writer . writeSymbol ( s , sym ) ;
10541054 setLastNonTriviaPosition ( s , /*force*/ false ) ;
10551055 }
1056- function writeLine ( force ?: boolean ) : void {
1057- writer . writeLine ( force ) ;
1056+ function writeLine ( ) : void {
1057+ writer . writeLine ( ) ;
1058+ }
1059+ function forceWriteLine ( ) {
1060+ writer . forceWriteLine ( ) ;
10581061 }
10591062 function increaseIndent ( ) : void {
10601063 writer . increaseIndent ( ) ;
@@ -1111,6 +1114,7 @@ namespace ts.textChanges {
11111114 writeStringLiteral,
11121115 writeSymbol,
11131116 writeLine,
1117+ forceWriteLine,
11141118 increaseIndent,
11151119 decreaseIndent,
11161120 getText,
Original file line number Diff line number Diff line change @@ -1912,6 +1912,7 @@ namespace ts {
19121912 writeLiteral : text => writeKind ( text , SymbolDisplayPartKind . stringLiteral ) ,
19131913 writeSymbol,
19141914 writeLine,
1915+ forceWriteLine : writeLine ,
19151916 write : unknownWrite ,
19161917 writeComment : unknownWrite ,
19171918 getText : ( ) => "" ,
You can’t perform that action at this time.
0 commit comments