Fix #53
This commit is contained in:
parent
85247f77f7
commit
5eef96e797
25
src/dfmt.d
25
src/dfmt.d
|
@ -489,11 +489,10 @@ private:
|
|||
else
|
||||
{
|
||||
writeToken();
|
||||
if (!currentIs(tok!")", false) && !currentIs(tok!"}", false)
|
||||
&& !currentIs(tok!"]", false))
|
||||
{
|
||||
if (currentIs(tok!"}", false))
|
||||
tempIndent = 0;
|
||||
else if (!currentIs(tok!")", false) && !currentIs(tok!"]", false))
|
||||
write(" ");
|
||||
}
|
||||
}
|
||||
regenLineBreakHintsIfNecessary(index - 1);
|
||||
break;
|
||||
|
@ -648,6 +647,7 @@ private:
|
|||
{
|
||||
import std.range : assumeSorted;
|
||||
int depth = 0;
|
||||
immutable l = indentLevel;
|
||||
do
|
||||
{
|
||||
if (current.type == tok!"{")
|
||||
|
@ -700,20 +700,11 @@ private:
|
|||
index++;
|
||||
if (index < tokens.length && current.type == tok!"else")
|
||||
write(" ");
|
||||
else
|
||||
{
|
||||
if (peekIs(tok!"case") || peekIs(tok!"default"))
|
||||
indentLevel--;
|
||||
newline();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
index++;
|
||||
if (peekIs(tok!"case") || peekIs(tok!"default"))
|
||||
indentLevel--;
|
||||
newline();
|
||||
}
|
||||
index++;
|
||||
if (peekIs(tok!"case") || peekIs(tok!"default"))
|
||||
indentLevel--;
|
||||
newline();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
enum DYNCAST : int
|
||||
{
|
||||
DYNCAST_OBJECT, DYNCAST_EXPRESSION, DYNCAST_DSYMBOL, DYNCAST_TYPE,
|
||||
DYNCAST_IDENTIFIER, DYNCAST_TUPLE, DYNCAST_PARAMETER,
|
||||
}
|
||||
alias MATCHnomatch = MATCH.MATCHnomatch;
|
|
@ -0,0 +1,7 @@
|
|||
enum DYNCAST : int
|
||||
{
|
||||
DYNCAST_OBJECT, DYNCAST_EXPRESSION, DYNCAST_DSYMBOL, DYNCAST_TYPE,
|
||||
DYNCAST_IDENTIFIER, DYNCAST_TUPLE, DYNCAST_PARAMETER,
|
||||
}
|
||||
|
||||
alias MATCHnomatch = MATCH.MATCHnomatch;
|
Loading…
Reference in New Issue