This commit is contained in:
Hackerpilot 2015-08-10 16:37:09 -07:00
parent 47a972693d
commit 17eedb50c0
6 changed files with 31 additions and 5 deletions

View File

@ -565,7 +565,7 @@ private:
void formatLeftBrace()
{
import std.algorithm : map, sum;
import std.algorithm : map, sum, canFind;
if (astInformation.structInitStartLocations.canFindIndex(tokens[index].index))
{
@ -587,9 +587,10 @@ private:
if (peekBackIs(tok!")"))
write(" ");
auto e = expressionEndIndex(index);
immutable bool hasComment = tokens[index .. e].canFind!((a, b) => a.type == b)(tok!"comment");
immutable int l = currentLineLength + tokens[index .. e].map!(a => tokenLength(a)).sum();
writeToken();
if (l > config.dfmt_soft_max_line_length)
if (hasComment || l > config.dfmt_soft_max_line_length)
{
indents.push(tok!"{");
newline();
@ -662,7 +663,7 @@ private:
write("}");
if (index + 1 < tokens.length
&& astInformation.doubleNewlineLocations.canFindIndex(tokens[index].index)
&& !peekIs(tok!"}") && !peekIs(tok!";"))
&& !peekIs(tok!"}") && !peekIs(tok!";") && !peekIs(tok!"comment", false))
{
simpleNewline();
currentLineLength = 0;

View File

@ -1,2 +1,3 @@
auto fun = { int i; // Comment
auto fun = {
int i; // Comment
};

View File

@ -0,0 +1,9 @@
void foo()
{ //
void bar()
{ //
baz({ //
qux(); //
}); //
} //
} //

7
tests/issue0166.d Normal file
View File

@ -0,0 +1,7 @@
void foo() { //
void bar() { //
baz({ //
qux(); //
}); //
} //
} //

View File

@ -1,2 +1,3 @@
auto fun = { int i; // Comment
auto fun = {
int i; // Comment
};

View File

@ -0,0 +1,7 @@
void foo() { //
void bar() { //
baz({ //
qux(); //
}); //
} //
} //