File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4025,7 +4025,7 @@ namespace ts {
40254025 // Emit each child.
40264026 let previousSibling : Node | undefined ;
40274027 let previousSourceFileTextKind : ReturnType < typeof recordBundleFileInternalSectionStart > ;
4028- let shouldDecreaselinesAfterEmit = false ;
4028+ let shouldDecreaseIndentAfterEmit = false ;
40294029 for ( let i = 0 ; i < count ; i ++ ) {
40304030 const child = children ! [ start + i ] ;
40314031
@@ -4055,7 +4055,7 @@ namespace ts {
40554055 // line, we should increase the indent.
40564056 if ( ( format & ( ListFormat . LinesMask | ListFormat . Indented ) ) === ListFormat . SingleLine ) {
40574057 increaseIndent ( ) ;
4058- shouldDecreaselinesAfterEmit = true ;
4058+ shouldDecreaseIndentAfterEmit = true ;
40594059 }
40604060
40614061 writeLine ( separatingLineTerminatorCount ) ;
@@ -4080,9 +4080,9 @@ namespace ts {
40804080
40814081 emit ( child ) ;
40824082
4083- if ( shouldDecreaselinesAfterEmit ) {
4083+ if ( shouldDecreaseIndentAfterEmit ) {
40844084 decreaseIndent ( ) ;
4085- shouldDecreaselinesAfterEmit = false ;
4085+ shouldDecreaseIndentAfterEmit = false ;
40864086 }
40874087
40884088 previousSibling = child ;
You can’t perform that action at this time.
0 commit comments