Regenerate line break hints after newline

Fixes #486.
This commit is contained in:
Eugen Wissner 2020-09-03 06:23:30 +02:00 committed by The Dlang Bot
parent 94351246f6
commit eab4cac12f
5 changed files with 16 additions and 1 deletions

View File

@ -1406,7 +1406,7 @@ private:
{ {
pushWrapIndent(); pushWrapIndent();
newline(); newline();
if (ufcsWrap) if (ufcsWrap || onNextLine)
regenLineBreakHints(index); regenLineBreakHints(index);
} }
writeToken(); writeToken();

View File

@ -0,0 +1,5 @@
void main()
{
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}

1
tests/issue0486.args Normal file
View File

@ -0,0 +1 @@
--keep_line_breaks=true

5
tests/issue0486.d Normal file
View File

@ -0,0 +1,5 @@
void main()
{
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}

View File

@ -0,0 +1,4 @@
void main() {
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}