parent
7659b1ae1a
commit
b70e78276f
|
@ -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))
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--keep_line_breaks=true
|
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue