Fix #166
This commit is contained in:
parent
47a972693d
commit
17eedb50c0
|
@ -565,7 +565,7 @@ private:
|
||||||
|
|
||||||
void formatLeftBrace()
|
void formatLeftBrace()
|
||||||
{
|
{
|
||||||
import std.algorithm : map, sum;
|
import std.algorithm : map, sum, canFind;
|
||||||
|
|
||||||
if (astInformation.structInitStartLocations.canFindIndex(tokens[index].index))
|
if (astInformation.structInitStartLocations.canFindIndex(tokens[index].index))
|
||||||
{
|
{
|
||||||
|
@ -587,9 +587,10 @@ private:
|
||||||
if (peekBackIs(tok!")"))
|
if (peekBackIs(tok!")"))
|
||||||
write(" ");
|
write(" ");
|
||||||
auto e = expressionEndIndex(index);
|
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();
|
immutable int l = currentLineLength + tokens[index .. e].map!(a => tokenLength(a)).sum();
|
||||||
writeToken();
|
writeToken();
|
||||||
if (l > config.dfmt_soft_max_line_length)
|
if (hasComment || l > config.dfmt_soft_max_line_length)
|
||||||
{
|
{
|
||||||
indents.push(tok!"{");
|
indents.push(tok!"{");
|
||||||
newline();
|
newline();
|
||||||
|
@ -662,7 +663,7 @@ private:
|
||||||
write("}");
|
write("}");
|
||||||
if (index + 1 < tokens.length
|
if (index + 1 < tokens.length
|
||||||
&& astInformation.doubleNewlineLocations.canFindIndex(tokens[index].index)
|
&& astInformation.doubleNewlineLocations.canFindIndex(tokens[index].index)
|
||||||
&& !peekIs(tok!"}") && !peekIs(tok!";"))
|
&& !peekIs(tok!"}") && !peekIs(tok!";") && !peekIs(tok!"comment", false))
|
||||||
{
|
{
|
||||||
simpleNewline();
|
simpleNewline();
|
||||||
currentLineLength = 0;
|
currentLineLength = 0;
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
auto fun = { int i; // Comment
|
auto fun = {
|
||||||
|
int i; // Comment
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
void foo()
|
||||||
|
{ //
|
||||||
|
void bar()
|
||||||
|
{ //
|
||||||
|
baz({ //
|
||||||
|
qux(); //
|
||||||
|
}); //
|
||||||
|
} //
|
||||||
|
} //
|
|
@ -0,0 +1,7 @@
|
||||||
|
void foo() { //
|
||||||
|
void bar() { //
|
||||||
|
baz({ //
|
||||||
|
qux(); //
|
||||||
|
}); //
|
||||||
|
} //
|
||||||
|
} //
|
|
@ -1,2 +1,3 @@
|
||||||
auto fun = { int i; // Comment
|
auto fun = {
|
||||||
|
int i; // Comment
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
void foo() { //
|
||||||
|
void bar() { //
|
||||||
|
baz({ //
|
||||||
|
qux(); //
|
||||||
|
}); //
|
||||||
|
} //
|
||||||
|
} //
|
Loading…
Reference in New Issue