File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4025,7 +4025,7 @@ namespace ts {
4025
4025
// Emit each child.
4026
4026
let previousSibling : Node | undefined ;
4027
4027
let previousSourceFileTextKind : ReturnType < typeof recordBundleFileInternalSectionStart > ;
4028
- let shouldDecreaselinesAfterEmit = false ;
4028
+ let shouldDecreaseIndentAfterEmit = false ;
4029
4029
for ( let i = 0 ; i < count ; i ++ ) {
4030
4030
const child = children ! [ start + i ] ;
4031
4031
@@ -4055,7 +4055,7 @@ namespace ts {
4055
4055
// line, we should increase the indent.
4056
4056
if ( ( format & ( ListFormat . LinesMask | ListFormat . Indented ) ) === ListFormat . SingleLine ) {
4057
4057
increaseIndent ( ) ;
4058
- shouldDecreaselinesAfterEmit = true ;
4058
+ shouldDecreaseIndentAfterEmit = true ;
4059
4059
}
4060
4060
4061
4061
writeLine ( separatingLineTerminatorCount ) ;
@@ -4080,9 +4080,9 @@ namespace ts {
4080
4080
4081
4081
emit ( child ) ;
4082
4082
4083
- if ( shouldDecreaselinesAfterEmit ) {
4083
+ if ( shouldDecreaseIndentAfterEmit ) {
4084
4084
decreaseIndent ( ) ;
4085
- shouldDecreaselinesAfterEmit = false ;
4085
+ shouldDecreaseIndentAfterEmit = false ;
4086
4086
}
4087
4087
4088
4088
previousSibling = child ;
You can’t perform that action at this time.
0 commit comments