Fix #100
This commit is contained in:
parent
0b7bc366f2
commit
ce1c20e847
11
src/dfmt.d
11
src/dfmt.d
|
@ -307,10 +307,11 @@ private:
|
||||||
else if ((isBlockHeader() || currentIs(tok!"version") || currentIs(tok!"debug"))
|
else if ((isBlockHeader() || currentIs(tok!"version") || currentIs(tok!"debug"))
|
||||||
&& peekIs(tok!"(", false))
|
&& peekIs(tok!"(", false))
|
||||||
{
|
{
|
||||||
immutable bool shouldPushIndent = (!currentIs(tok!"version")
|
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug") ;
|
||||||
&& !currentIs(tok!"debug")) || astInformation.conditionalWithElseLocations
|
immutable bool b = a || astInformation.conditionalWithElseLocations
|
||||||
.canFindIndex(current.index) || astInformation.conditionalStatementLocations.canFindIndex(
|
.canFindIndex(current.index);
|
||||||
current.index);
|
immutable bool shouldPushIndent = b || astInformation.conditionalStatementLocations
|
||||||
|
.canFindIndex(current.index);
|
||||||
if (shouldPushIndent)
|
if (shouldPushIndent)
|
||||||
indents.push(current.type);
|
indents.push(current.type);
|
||||||
writeToken();
|
writeToken();
|
||||||
|
@ -1764,7 +1765,7 @@ struct IndentStack
|
||||||
foreach (i; 1 .. j + 1)
|
foreach (i; 1 .. j + 1)
|
||||||
{
|
{
|
||||||
if ((i + 1 <= index && !isWrapIndent(arr[i]) && isTempIndent(arr[i])
|
if ((i + 1 <= index && !isWrapIndent(arr[i]) && isTempIndent(arr[i])
|
||||||
&& (!isTempIndent(arr[i + 1]))))
|
&& (!isTempIndent(arr[i + 1]) || arr[i + 1] == tok!"switch")))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
loop: while (i < tokens.length) switch (tokens[i].type)
|
||||||
|
{
|
||||||
|
case tok!"(":
|
||||||
|
parenDepth++;
|
||||||
|
i++;
|
||||||
|
break;
|
||||||
|
case tok!"{":
|
||||||
|
braceDepth++;
|
||||||
|
i++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
loop: while (i < tokens.length) switch (tokens[i].type)
|
||||||
|
{
|
||||||
|
case tok!"(":
|
||||||
|
parenDepth++;
|
||||||
|
i++;
|
||||||
|
break;
|
||||||
|
case tok!"{":
|
||||||
|
braceDepth++;
|
||||||
|
i++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue