commit
23df06cdc9
|
@ -1269,7 +1269,7 @@ const pure @safe @nogc:
|
||||||
break;
|
break;
|
||||||
if (depths[i] < d)
|
if (depths[i] < d)
|
||||||
break;
|
break;
|
||||||
if (!braces && tokens[i].type == tok!";")
|
if (!braces && (tokens[i].type == tok!";" || tokens[i].type == tok!"{"))
|
||||||
break;
|
break;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
class Foo(T) : FirstInterfaceWithVeryLongName,
|
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar))
|
||||||
SecondInterfaceWithVeryLongName if (is(T : Bar))
|
|
||||||
{
|
{
|
||||||
void foo()
|
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,
|
class Foo(T) : FirstInterfaceWithVeryLongName, SecondInterfaceWithVeryLongName if (is(T : Bar)) {
|
||||||
SecondInterfaceWithVeryLongName if (is(T : Bar)) {
|
|
||||||
void foo() {
|
void foo() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
final class FormatVisitor : ASTVisitor {
|
||||||
|
this(ASTInformation* astInformation) {
|
||||||
|
this.astInformation = astInformation;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue