File tree 2 files changed +7
-2
lines changed 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1053,8 +1053,11 @@ namespace ts.textChanges {
1053
1053
writer . writeSymbol ( s , sym ) ;
1054
1054
setLastNonTriviaPosition ( s , /*force*/ false ) ;
1055
1055
}
1056
- function writeLine ( force ?: boolean ) : void {
1057
- writer . writeLine ( force ) ;
1056
+ function writeLine ( ) : void {
1057
+ writer . writeLine ( ) ;
1058
+ }
1059
+ function forceWriteLine ( ) {
1060
+ writer . forceWriteLine ( ) ;
1058
1061
}
1059
1062
function increaseIndent ( ) : void {
1060
1063
writer . increaseIndent ( ) ;
@@ -1111,6 +1114,7 @@ namespace ts.textChanges {
1111
1114
writeStringLiteral,
1112
1115
writeSymbol,
1113
1116
writeLine,
1117
+ forceWriteLine,
1114
1118
increaseIndent,
1115
1119
decreaseIndent,
1116
1120
getText,
Original file line number Diff line number Diff line change @@ -1912,6 +1912,7 @@ namespace ts {
1912
1912
writeLiteral : text => writeKind ( text , SymbolDisplayPartKind . stringLiteral ) ,
1913
1913
writeSymbol,
1914
1914
writeLine,
1915
+ forceWriteLine : writeLine ,
1915
1916
write : unknownWrite ,
1916
1917
writeComment : unknownWrite ,
1917
1918
getText : ( ) => "" ,
You can’t perform that action at this time.
0 commit comments