Fix #186
This commit is contained in:
parent
b7f045fd5e
commit
d771955ad3
|
@ -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,18 +1240,22 @@ 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)
|
||||
{
|
||||
output.put(" ");
|
||||
currentLineLength++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void pushWrapIndent(IdType type = tok!"")
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
void functionName()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
static if (true)
|
||||
{
|
||||
if (true && {
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
return true;
|
||||
}())
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
void functionName()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
static if (true)
|
||||
{
|
||||
if (true && {
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
return true;
|
||||
}())
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
void functionName() {
|
||||
|
||||
}
|
||||
|
||||
void main() {
|
||||
static if (true) {
|
||||
if (true && {
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
functionName();
|
||||
return true;
|
||||
}()) {
|
||||
|
||||
}
|
||||
else {
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue