This commit is contained in:
Hackerpilot 2015-03-13 02:01:34 -07:00
commit 7669e06de6
8 changed files with 148 additions and 17 deletions

View File

@ -236,6 +236,7 @@ private:
else if ((t == tok!"import" && !currentIs(tok!"import"))) else if ((t == tok!"import" && !currentIs(tok!"import")))
{ {
write("\n"); write("\n");
currentLineLength = 0;
justAddedExtraNewline = true; justAddedExtraNewline = true;
newline(); newline();
} }
@ -299,8 +300,7 @@ private:
writeToken(); // switch writeToken(); // switch
write(" "); write(" ");
} }
else if ((currentIs(tok!"version") || currentIs(tok!"extern")) else if (currentIs(tok!"extern") && peekIs(tok!"("))
&& peekIs(tok!"("))
{ {
writeToken(); writeToken();
write(" "); write(" ");
@ -325,13 +325,13 @@ private:
if (currentIs(tok!"if") || (currentIs(tok!"static") && peekIs(tok!"if")) if (currentIs(tok!"if") || (currentIs(tok!"static") && peekIs(tok!"if"))
|| currentIs(tok!"version")) || currentIs(tok!"version"))
{ {
if (indents.top() == tok!"if") if (indents.top() == tok!"if" || indents.top == tok!"version")
indents.pop(); indents.pop();
write(" "); write(" ");
} }
else if (!currentIs(tok!"{") && !currentIs(tok!"comment")) else if (!currentIs(tok!"{") && !currentIs(tok!"comment"))
{ {
if (indents.top() == tok!"if") if (indents.top() == tok!"if" || indents.top == tok!"version")
indents.pop(); indents.pop();
indents.push(tok!"else"); indents.push(tok!"else");
newline(); newline();
@ -490,6 +490,14 @@ private:
{ {
writeToken(); writeToken();
} }
else if (assumeSorted(astInformation.funLitStartLocations)
.equalRange(tokens[index].index).length)
{
if (peekBackIs(tok!")"))
write(" ");
writeToken();
write(" ");
}
else else
{ {
if (!justAddedExtraNewline && !peekBackIs(tok!"{") if (!justAddedExtraNewline && !peekBackIs(tok!"{")
@ -513,6 +521,12 @@ private:
{ {
writeToken(); writeToken();
} }
else if (assumeSorted(astInformation.funLitEndLocations)
.equalRange(tokens[index].index).length)
{
write(" ");
writeToken();
}
else else
{ {
// Silly hack to format enums better. // Silly hack to format enums better.
@ -523,14 +537,20 @@ private:
assumeSorted(astInformation.doubleNewlineLocations) assumeSorted(astInformation.doubleNewlineLocations)
.equalRange(tokens[index].index).length && !peekIs(tok!"}")) .equalRange(tokens[index].index).length && !peekIs(tok!"}"))
{ {
output.put("\n"); write("\n");
currentLineLength = 0;
justAddedExtraNewline = true; justAddedExtraNewline = true;
} }
if (config.braceStyle == BraceStyle.otbs && currentIs(tok!"else")) if (config.braceStyle == BraceStyle.otbs && currentIs(tok!"else"))
write(" "); write(" ");
if (!peekIs(tok!",") && !peekIs(tok!")"))
{
index++; index++;
newline(); newline();
} }
else
index++;
}
break; break;
case tok!".": case tok!".":
if (linebreakHints.canFind(index) || (linebreakHints.length == 0 if (linebreakHints.canFind(index) || (linebreakHints.length == 0
@ -711,12 +731,11 @@ private:
{ {
if (currentIs(tok!";")) if (currentIs(tok!";"))
{ {
if (!(peekIs(tok!";") || peekIs(tok!")"))) if (!(peekIs(tok!";") || peekIs(tok!")") || peekIs(tok!"}")))
write("; "); write("; ");
else else
write(";"); write(";");
index++; index++;
continue;
} }
else if (currentIs(tok!"(")) else if (currentIs(tok!"("))
{ {
@ -731,7 +750,6 @@ private:
newline(); newline();
} }
regenLineBreakHintsIfNecessary(index - 1); regenLineBreakHintsIfNecessary(index - 1);
continue;
} }
else if (currentIs(tok!")")) else if (currentIs(tok!")"))
{ {
@ -922,19 +940,29 @@ 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!"if" || t == tok!"out" || t == tok!"version"
|| t == tok!"catch" || t == tok!"with"; || t == tok!"catch" || t == tok!"with";
} }
void newline() void newline()
{ {
import std.range : assumeSorted; import std.range : assumeSorted;
import std.algorithm : max;
if (currentIs(tok!"comment") && current.line == tokenEndLine(tokens[index - 1])) if (currentIs(tok!"comment") && current.line == tokenEndLine(tokens[index - 1]))
return; return;
output.put("\n");
immutable bool hasCurrent = index + 1 < tokens.length; immutable bool hasCurrent = index + 1 < tokens.length;
if (hasCurrent && tokens[index].type == tok!"}" && !assumeSorted(
astInformation.funLitEndLocations).equalRange(tokens[index].index).empty)
{
write(" ");
return;
}
output.put("\n");
if (!justAddedExtraNewline && index > 0 if (!justAddedExtraNewline && index > 0
&& hasCurrent && tokens[index].line - tokenEndLine(tokens[index - 1]) > 1) && hasCurrent && tokens[index].line - tokenEndLine(tokens[index - 1]) > 1)
{ {
@ -948,12 +976,19 @@ private:
bool switchLabel = false; bool switchLabel = false;
if (currentIs(tok!"else")) if (currentIs(tok!"else"))
{ {
auto l = indents.indentToMostRecent(tok!"if"); auto i = indents.indentToMostRecent(tok!"if");
if (l != -1) auto v = indents.indentToMostRecent(tok!"version");
indentLevel = l; auto mostRecent = max(i, v);
if (mostRecent != -1)
indentLevel = mostRecent;
} }
else if (currentIs(tok!"identifier") && peekIs(tok!":")) else if (currentIs(tok!"identifier") && peekIs(tok!":"))
{ {
while ((peekBackIs(tok!"}", true) || peekBackIs(tok!";", true))
&& indents.length && isTempIndent(indents.top()))
{
indents.pop();
}
auto l = indents.indentToMostRecent(tok!"switch"); auto l = indents.indentToMostRecent(tok!"switch");
if (l != -1) if (l != -1)
{ {
@ -970,12 +1005,19 @@ private:
} }
else if (currentIs(tok!"case") || currentIs(tok!"default")) else if (currentIs(tok!"case") || currentIs(tok!"default"))
{ {
while ((peekBackIs(tok!"}", true) || peekBackIs(tok!";", true))
&& indents.length && isTempIndent(indents.top()))
{
indents.pop();
}
auto l = indents.indentToMostRecent(tok!"switch"); auto l = indents.indentToMostRecent(tok!"switch");
if (l != -1) if (l != -1)
indentLevel = l; indentLevel = l;
} }
else if (currentIs(tok!"{") && assumeSorted( else if (currentIs(tok!"{") && assumeSorted(
astInformation.structInitStartLocations).equalRange( astInformation.structInitStartLocations).equalRange(
tokens[index].index).empty && assumeSorted(
astInformation.funLitStartLocations).equalRange(
tokens[index].index).empty) tokens[index].index).empty)
{ {
while (indents.length && isWrapIndent(indents.top)) while (indents.length && isWrapIndent(indents.top))
@ -997,7 +1039,8 @@ private:
indents.pop(); indents.pop();
} }
while (indents.length && isTempIndent(indents.top) while (indents.length && isTempIndent(indents.top)
&& (indents.top != tok!"if" || !peekIs(tok!"else"))) && ((indents.top != tok!"if" && indents.top != tok!"version")
|| !peekIs(tok!"else")))
{ {
indents.pop(); indents.pop();
} }
@ -1132,6 +1175,8 @@ struct ASTInformation
sort(caseEndLocations); sort(caseEndLocations);
sort(structInitStartLocations); sort(structInitStartLocations);
sort(structInitEndLocations); sort(structInitEndLocations);
sort(funLitStartLocations);
sort(funLitEndLocations);
} }
/// Locations of end braces for struct bodies /// Locations of end braces for struct bodies
@ -1154,6 +1199,12 @@ struct ASTInformation
/// Closing braces of struct initializers /// Closing braces of struct initializers
size_t[] structInitEndLocations; size_t[] structInitEndLocations;
/// Opening braces of function literals
size_t[] funLitStartLocations;
/// Closing braces of function literals
size_t[] funLitEndLocations;
} }
/// Collects information from the AST that is useful for the formatter /// Collects information from the AST that is useful for the formatter
@ -1165,6 +1216,15 @@ final class FormatVisitor : ASTVisitor
this.astInformation = astInformation; this.astInformation = astInformation;
} }
override void visit(const FunctionLiteralExpression funcLit)
{
astInformation.funLitStartLocations ~= funcLit.functionBody
.blockStatement.startLocation;
astInformation.funLitEndLocations ~= funcLit.functionBody
.blockStatement.endLocation;
funcLit.accept(this);
}
override void visit(const DefaultStatement defaultStatement) override void visit(const DefaultStatement defaultStatement)
{ {
astInformation.caseEndLocations ~= defaultStatement.colonLocation; astInformation.caseEndLocations ~= defaultStatement.colonLocation;

View File

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

17
tests/issue0092.d Normal file
View File

@ -0,0 +1,17 @@
unittest
{
switch (cast(uint) sz)
{
case 3:
if (!global.params.is64bit)
goto Lmemory;
case 4:
t1 = Type.tint32;
break;
case 5:
if (!global.params.is64bit)
goto Lmemory;
default:
break;
}
}

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

@ -0,0 +1,17 @@
unittest
{
switch (cast(uint) sz)
{
case 3:
if (!global.params.is64bit)
goto Lmemory;
case 4:
t1 = Type.tint32;
break;
case 5:
if (!global.params.is64bit)
goto Lmemory;
default:
break;
}
}

12
tests/issue0093.d Normal file
View File

@ -0,0 +1,12 @@
unittest
{
if (x)
{
version (none)
{
}
else
{
}
}
}

12
tests/issue0093.d.ref Normal file
View File

@ -0,0 +1,12 @@
unittest
{
if (x)
{
version (none)
{
}
else
{
}
}
}

6
tests/issue0094.d Normal file
View File

@ -0,0 +1,6 @@
void test()
{
fun((int x) { writeln(x); }, (int x) { writeln(x); });
return;
}

6
tests/issue0094.d.ref Normal file
View File

@ -0,0 +1,6 @@
void test()
{
fun((int x) { writeln(x); }, (int x) { writeln(x); });
return;
}