Fix #146
This commit is contained in:
parent
f34a6b6d07
commit
53dd109d75
|
@ -404,7 +404,7 @@ private:
|
|||
else
|
||||
write(" ");
|
||||
}
|
||||
else if (index < tokens.length && (currentIs(tok!"@") || !isOperator(tokens[index].type)))
|
||||
else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type)))
|
||||
write(" ");
|
||||
}
|
||||
|
||||
|
@ -720,6 +720,8 @@ private:
|
|||
write(" ");
|
||||
break;
|
||||
default:
|
||||
if (peekBackIs(tok!"identifier"))
|
||||
write(" ");
|
||||
if (index + 1 < tokens.length)
|
||||
{
|
||||
if (!peekIs(tok!"@") && (peekIsOperator() || peekIs(tok!"out") || peekIs(tok!"in")))
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
alias FooFactory = Foo delegate();
|
|
@ -0,0 +1 @@
|
|||
alias FooFactory = Foo delegate();
|
|
@ -0,0 +1 @@
|
|||
alias FooFactory = Foo delegate();
|
Loading…
Reference in New Issue