Fix #314
This commit is contained in:
parent
19e774ebf7
commit
1ca3bd9255
|
@ -841,7 +841,8 @@ private:
|
||||||
justAddedExtraNewline = true;
|
justAddedExtraNewline = true;
|
||||||
}
|
}
|
||||||
if (config.dfmt_brace_style == BraceStyle.otbs
|
if (config.dfmt_brace_style == BraceStyle.otbs
|
||||||
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if"))
|
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if")
|
||||||
|
&& !indents.topIs(tok!"foreach"))
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
index++;
|
index++;
|
||||||
|
@ -852,7 +853,7 @@ private:
|
||||||
&& !peekIs(tok!";") && !peekIs(tok!"{"))
|
&& !peekIs(tok!";") && !peekIs(tok!"{"))
|
||||||
{
|
{
|
||||||
index++;
|
index++;
|
||||||
if (indents.topIs(tok!"static"))
|
if (indents.topIsOneOf(tok!"static", tok!"foreach"))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
newline();
|
newline();
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
auto d = {
|
||||||
|
if (a)
|
||||||
|
foreach (b; c)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else
|
||||||
|
e();
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
auto d = {
|
||||||
|
if (a)
|
||||||
|
foreach (b; c) { }
|
||||||
|
else
|
||||||
|
e();
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
void main() {
|
||||||
|
auto d = {
|
||||||
|
if (a)
|
||||||
|
foreach (b; c) {
|
||||||
|
}
|
||||||
|
else
|
||||||
|
e();
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue