Merge pull request #179 from Hackerpilot/issue-172

#172
This commit is contained in:
Brian Schott 2015-08-24 13:32:11 -07:00
commit 23df06cdc9
6 changed files with 22 additions and 5 deletions

View File

@ -1269,7 +1269,7 @@ const pure @safe @nogc:
break;
if (depths[i] < d)
break;
if (!braces && tokens[i].type == tok!";")
if (!braces && (tokens[i].type == tok!";" || tokens[i].type == tok!"{"))
break;
i++;
}

View File

@ -1,5 +1,4 @@
class Foo(T) : FirstInterfaceWithVeryLongName,
SecondInterfaceWithVeryLongName if (is(T : Bar))
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar))
{
void foo()
{

View File

@ -0,0 +1,7 @@
final class FormatVisitor : ASTVisitor
{
this(ASTInformation* astInformation)
{
this.astInformation = astInformation;
}
}

7
tests/issue0172.d Normal file
View File

@ -0,0 +1,7 @@
final class FormatVisitor : ASTVisitor
{
this(ASTInformation* astInformation)
{
this.astInformation = astInformation;
}
}

View File

@ -1,5 +1,4 @@
class Foo(T) : FirstInterfaceWithVeryLongName,
SecondInterfaceWithVeryLongName if (is(T : Bar)) {
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar)) {
void foo() {
}
}

View File

@ -0,0 +1,5 @@
final class FormatVisitor : ASTVisitor {
this(ASTInformation* astInformation) {
this.astInformation = astInformation;
}
}