This commit is contained in:
Hackerpilot 2015-04-28 22:39:47 -07:00
parent f34a6b6d07
commit 53dd109d75
4 changed files with 6 additions and 1 deletions

View File

@ -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")))

View File

@ -0,0 +1 @@
alias FooFactory = Foo delegate();

1
tests/issue0146.d Normal file
View File

@ -0,0 +1 @@
alias FooFactory = Foo delegate();

View File

@ -0,0 +1 @@
alias FooFactory = Foo delegate();