This commit is contained in:
Hackerpilot 2015-03-18 16:31:56 -07:00
parent c291340e90
commit 76c37dd8f6
4 changed files with 1861 additions and 1813 deletions

View File

@ -601,7 +601,8 @@ private:
else
{
// Silly hack to format enums better.
if (peekBackIsLiteralOrIdent() || (peekBackIs(tok!",", true) && !peekBackIsSlashSlash))
if (peekBackIsLiteralOrIdent() || peekBackIs(tok!")", true)
||(peekBackIs(tok!",", true) && !peekBackIsSlashSlash))
newline();
write("}");
if (index < tokens.length - 1
@ -746,8 +747,8 @@ private:
case tok!"~":
if (peekIs(tok!"this"))
{
if (!(index == 0 || peekBackIs(tok!"{", true) || peekBackIs(tok!"}", true)
|| peekBackIs(tok!";", true)))
if (!(index == 0 || peekBackIs(tok!"{", true)
|| peekBackIs(tok!"}", true) || peekBackIs(tok!";", true)))
{
write(" ");
}
@ -882,7 +883,8 @@ private:
import std.algorithm : canFind;
regenLineBreakHintsIfNecessary(index);
if (indents.indentToMostRecent(tok!"enum") != -1 && !peekIs(tok!"}"))
if (indents.indentToMostRecent(tok!"enum") != -1 && !peekIs(tok!"}")
&& indents.top == tok!"{" && parenDepth == 0)
{
writeToken();
newline();

View File

@ -0,0 +1,16 @@
auto foo = bar(1, 1, 1);
auto foo = A!(int, int, int);
enum foo = bar(1, 1, 1);
enum foo = A!(int, int, int);
enum bar
{
a = Struct(a, b, c),
b = Struct(d, e, f)
}
enum bar
{
a = Struct(a, b, c),
b = Struct(d, e, f),
}

16
tests/issue0118.d Normal file
View File

@ -0,0 +1,16 @@
auto foo = bar(1, 1, 1);
auto foo = A!(int, int, int);
enum foo = bar(1, 1, 1);
enum foo = A!(int, int, int);
enum bar
{
a = Struct(a, b, c),
b = Struct(d, e, f)
}
enum bar
{
a = Struct(a, b, c),
b = Struct(d, e, f),
}

View File

@ -0,0 +1,14 @@
auto foo = bar(1, 1, 1);
auto foo = A!(int, int, int);
enum foo = bar(1, 1, 1);
enum foo = A!(int, int, int);
enum bar {
a = Struct(a, b, c),
b = Struct(d, e, f)
}
enum bar {
a = Struct(a, b, c),
b = Struct(d, e, f),
}