Keep line breaks in UFCS chains

Fixes #503.
This commit is contained in:
Eugen Wissner 2020-09-13 18:37:28 +02:00
parent 7659b1ae1a
commit b70e78276f
5 changed files with 44 additions and 1 deletions

View File

@ -1401,7 +1401,8 @@ private:
break;
case tok!".":
regenLineBreakHintsIfNecessary(index);
immutable bool ufcsWrap = astInformation.ufcsHintLocations.canFindIndex(current.index);
immutable bool ufcsWrap = config.dfmt_keep_line_breaks == OptionalBoolean.f
&& astInformation.ufcsHintLocations.canFindIndex(current.index);
if (ufcsWrap || linebreakHints.canFind(index) || onNextLine
|| (linebreakHints.length == 0 && currentLineLength + nextTokenLength() > config.max_line_length))
{

View File

@ -0,0 +1,15 @@
string f()
{
return duration.total!"seconds".to!string;
}
string g()
{
return duration.total!"seconds"().to!string;
}
string h()
{
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
.to!string.to!string.to!string;
}

1
tests/issue0503.args Normal file
View File

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

14
tests/issue0503.d Normal file
View File

@ -0,0 +1,14 @@
string f()
{
return duration.total!"seconds".to!string;
}
string g()
{
return duration.total!"seconds"().to!string;
}
string h()
{
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string.to!string.to!string.to!string;
}

View File

@ -0,0 +1,12 @@
string f() {
return duration.total!"seconds".to!string;
}
string g() {
return duration.total!"seconds"().to!string;
}
string h() {
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
.to!string.to!string.to!string;
}