This commit is contained in:
Hackerpilot 2015-03-13 02:33:38 -07:00
parent 7669e06de6
commit 80b853113f
5 changed files with 62 additions and 6 deletions

@ -1 +1 @@
Subproject commit 9dc22fb7d7fa95130d787e4a3a96b5b970027f4f
Subproject commit f20c701c96e6e4a7a16bea9d6a90c632c3d5b599

View File

@ -306,9 +306,15 @@ private:
write(" ");
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();
write(" ");
writeParens(false);
@ -316,6 +322,11 @@ private:
write(" ");
else if (currentIs(tok!"comment"))
formatStep();
else if (!shouldPushIndent)
{
if (!currentIs(tok!"{") && !currentIs(tok!";"))
write(" ");
}
else if (!currentIs(tok!"{") && !currentIs(tok!";"))
newline();
}
@ -940,7 +951,7 @@ private:
auto t = tokens[i + index].type;
return t == tok!"for" || t == tok!"foreach"
|| 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";
}
@ -1177,6 +1188,7 @@ struct ASTInformation
sort(structInitEndLocations);
sort(funLitStartLocations);
sort(funLitEndLocations);
sort(conditionalWithElseLocations);
}
/// Locations of end braces for struct bodies
@ -1205,6 +1217,8 @@ struct ASTInformation
/// Closing braces of function literals
size_t[] funLitEndLocations;
size_t[] conditionalWithElseLocations;
}
/// Collects information from the AST that is useful for the formatter
@ -1216,6 +1230,27 @@ final class FormatVisitor : ASTVisitor
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)
{
astInformation.funLitStartLocations ~= funcLit.functionBody

View File

@ -1,2 +1 @@
version (AArch64)
int x = 10;
version (AArch64) int x = 10;

5
tests/issue0096.d Normal file
View File

@ -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(); }

17
tests/issue0096.d.ref Normal file
View File

@ -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();
}