commit
23df06cdc9
|
@ -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++;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
class Foo(T) : FirstInterfaceWithVeryLongName,
|
||||
SecondInterfaceWithVeryLongName if (is(T : Bar))
|
||||
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar))
|
||||
{
|
||||
void foo()
|
||||
{
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
final class FormatVisitor : ASTVisitor
|
||||
{
|
||||
this(ASTInformation* astInformation)
|
||||
{
|
||||
this.astInformation = astInformation;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
final class FormatVisitor : ASTVisitor
|
||||
{
|
||||
this(ASTInformation* astInformation)
|
||||
{
|
||||
this.astInformation = astInformation;
|
||||
}
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
class Foo(T) : FirstInterfaceWithVeryLongName,
|
||||
SecondInterfaceWithVeryLongName if (is(T : Bar)) {
|
||||
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar)) {
|
||||
void foo() {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
final class FormatVisitor : ASTVisitor {
|
||||
this(ASTInformation* astInformation) {
|
||||
this.astInformation = astInformation;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue