Fix #148
This commit is contained in:
parent
e16c7bd465
commit
b868dbcaa6
|
@ -404,7 +404,8 @@ private:
|
|||
else
|
||||
write(" ");
|
||||
}
|
||||
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)))
|
||||
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)
|
||||
|| currentIs(tok!"identifier")))
|
||||
write(" ");
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
class Foo
|
||||
{
|
||||
@property Socket socket()
|
||||
{
|
||||
return this.socket;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
class Foo
|
||||
{
|
||||
@property Socket socket()
|
||||
{
|
||||
return this.socket;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
class Foo {
|
||||
@property Socket socket() {
|
||||
return this.socket;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue