This commit is contained in:
Hackerpilot 2015-09-17 02:52:35 -07:00
parent b7f045fd5e
commit d771955ad3
4 changed files with 88 additions and 3 deletions

View File

@ -1149,7 +1149,7 @@ private:
indentLevel = indents.indentToMostRecent(tok!"{");
indents.pop();
}
while (indents.topIsTemp() && ((indents.top != tok!"if"
while (sBraceDepth == 0 && indents.topIsTemp() && ((indents.top != tok!"if"
&& indents.top != tok!"version") || !peekIs(tok!"else")))
{
indents.pop();
@ -1181,9 +1181,9 @@ private:
}
else
{
while (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}", tok!";")
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}", tok!";")
&& indents.top != tok!";"))
indents.pop();
indents.popTempIndents();
indentLevel = indents.indentLevel;
}
indent();
@ -1240,12 +1240,15 @@ private:
{
import dfmt.editorconfig : IndentStyle;
if (config.indent_style == IndentStyle.tab)
{
foreach (i; 0 .. indentLevel)
{
currentLineLength += config.tab_width;
output.put("\t");
}
}
else
{
foreach (i; 0 .. indentLevel)
foreach (j; 0 .. config.indent_size)
{
@ -1253,6 +1256,7 @@ private:
currentLineLength++;
}
}
}
void pushWrapIndent(IdType type = tok!"")
{

View File

@ -0,0 +1,29 @@
void functionName()
{
}
void main()
{
static if (true)
{
if (true && {
functionName();
functionName();
functionName();
functionName();
return true;
}())
{
}
else
{
}
}
else
{
}
}

29
tests/issue0186.d Normal file
View File

@ -0,0 +1,29 @@
void functionName()
{
}
void main()
{
static if (true)
{
if (true && {
functionName();
functionName();
functionName();
functionName();
return true;
}())
{
}
else
{
}
}
else
{
}
}

View File

@ -0,0 +1,23 @@
void functionName() {
}
void main() {
static if (true) {
if (true && {
functionName();
functionName();
functionName();
functionName();
return true;
}()) {
}
else {
}
}
else {
}
}