Fix #96
This commit is contained in:
parent
7669e06de6
commit
80b853113f
|
@ -1 +1 @@
|
||||||
Subproject commit 9dc22fb7d7fa95130d787e4a3a96b5b970027f4f
|
Subproject commit f20c701c96e6e4a7a16bea9d6a90c632c3d5b599
|
41
src/dfmt.d
41
src/dfmt.d
|
@ -306,9 +306,15 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
writeParens(true);
|
writeParens(true);
|
||||||
}
|
}
|
||||||
else if (isBlockHeader() && peekIs(tok!"(", false))
|
else if ((isBlockHeader() || currentIs(tok!"version") || currentIs(tok!"debug"))
|
||||||
|
&& peekIs(tok!"(", false))
|
||||||
{
|
{
|
||||||
indents.push(current.type);
|
immutable bool shouldPushIndent = (!currentIs(tok!"version")
|
||||||
|
&& !currentIs(tok!"debug")) || !assumeSorted(
|
||||||
|
astInformation.conditionalWithElseLocations).equalRange(
|
||||||
|
current.index).empty;
|
||||||
|
if (shouldPushIndent)
|
||||||
|
indents.push(current.type);
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
write(" ");
|
||||||
writeParens(false);
|
writeParens(false);
|
||||||
|
@ -316,6 +322,11 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
else if (currentIs(tok!"comment"))
|
else if (currentIs(tok!"comment"))
|
||||||
formatStep();
|
formatStep();
|
||||||
|
else if (!shouldPushIndent)
|
||||||
|
{
|
||||||
|
if (!currentIs(tok!"{") && !currentIs(tok!";"))
|
||||||
|
write(" ");
|
||||||
|
}
|
||||||
else if (!currentIs(tok!"{") && !currentIs(tok!";"))
|
else if (!currentIs(tok!"{") && !currentIs(tok!";"))
|
||||||
newline();
|
newline();
|
||||||
}
|
}
|
||||||
|
@ -940,7 +951,7 @@ private:
|
||||||
auto t = tokens[i + index].type;
|
auto t = tokens[i + index].type;
|
||||||
return t == tok!"for" || t == tok!"foreach"
|
return t == tok!"for" || t == tok!"foreach"
|
||||||
|| t == tok!"foreach_reverse" || t == tok!"while"
|
|| t == tok!"foreach_reverse" || t == tok!"while"
|
||||||
|| t == tok!"if" || t == tok!"out" || t == tok!"version"
|
|| t == tok!"if" || t == tok!"out"
|
||||||
|| t == tok!"catch" || t == tok!"with";
|
|| t == tok!"catch" || t == tok!"with";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1177,6 +1188,7 @@ struct ASTInformation
|
||||||
sort(structInitEndLocations);
|
sort(structInitEndLocations);
|
||||||
sort(funLitStartLocations);
|
sort(funLitStartLocations);
|
||||||
sort(funLitEndLocations);
|
sort(funLitEndLocations);
|
||||||
|
sort(conditionalWithElseLocations);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Locations of end braces for struct bodies
|
/// Locations of end braces for struct bodies
|
||||||
|
@ -1205,6 +1217,8 @@ struct ASTInformation
|
||||||
|
|
||||||
/// Closing braces of function literals
|
/// Closing braces of function literals
|
||||||
size_t[] funLitEndLocations;
|
size_t[] funLitEndLocations;
|
||||||
|
|
||||||
|
size_t[] conditionalWithElseLocations;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Collects information from the AST that is useful for the formatter
|
/// Collects information from the AST that is useful for the formatter
|
||||||
|
@ -1216,6 +1230,27 @@ final class FormatVisitor : ASTVisitor
|
||||||
this.astInformation = astInformation;
|
this.astInformation = astInformation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override void visit(const ConditionalDeclaration conditionalDeclaration)
|
||||||
|
{
|
||||||
|
if (conditionalDeclaration.falseDeclaration !is null)
|
||||||
|
{
|
||||||
|
auto condition = conditionalDeclaration.compileCondition;
|
||||||
|
if (condition.versionCondition !is null)
|
||||||
|
{
|
||||||
|
astInformation.conditionalWithElseLocations ~=
|
||||||
|
condition.versionCondition.versionIndex;
|
||||||
|
}
|
||||||
|
else if (condition.debugCondition !is null)
|
||||||
|
{
|
||||||
|
astInformation.conditionalWithElseLocations ~=
|
||||||
|
condition.debugCondition.debugIndex;
|
||||||
|
}
|
||||||
|
// Skip "static if" because the formatting for normal "if" handles
|
||||||
|
// it properly
|
||||||
|
}
|
||||||
|
conditionalDeclaration.accept(this);
|
||||||
|
}
|
||||||
|
|
||||||
override void visit(const FunctionLiteralExpression funcLit)
|
override void visit(const FunctionLiteralExpression funcLit)
|
||||||
{
|
{
|
||||||
astInformation.funLitStartLocations ~= funcLit.functionBody
|
astInformation.funLitStartLocations ~= funcLit.functionBody
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
version (AArch64)
|
version (AArch64) int x = 10;
|
||||||
int x = 10;
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
version (Windows) void func();
|
||||||
|
version (Windows) void func();
|
||||||
|
else void func();
|
||||||
|
version (Windows) {void func();}
|
||||||
|
version (Windows) {void func();} else { void func(); }
|
|
@ -0,0 +1,17 @@
|
||||||
|
version (Windows) void func();
|
||||||
|
version (Windows)
|
||||||
|
void func();
|
||||||
|
else
|
||||||
|
void func();
|
||||||
|
version (Windows)
|
||||||
|
{
|
||||||
|
void func();
|
||||||
|
}
|
||||||
|
version (Windows)
|
||||||
|
{
|
||||||
|
void func();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
void func();
|
||||||
|
}
|
Loading…
Reference in New Issue