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