This commit is contained in:
Hackerpilot 2015-05-12 16:40:33 -07:00
parent f28acb7ead
commit 98686f7dd1
4 changed files with 5 additions and 2 deletions

View File

@ -699,7 +699,7 @@ private:
} }
break; break;
case tok!"in": case tok!"in":
auto isContract = astInformation.contractLocations.canFindIndex(current.index); immutable isContract = astInformation.contractLocations.canFindIndex(current.index);
if (isContract) if (isContract)
newline(); newline();
else if (!peekBackIsOneOf(false, tok!"(", tok!",", tok!"!")) else if (!peekBackIsOneOf(false, tok!"(", tok!",", tok!"!"))
@ -709,7 +709,7 @@ private:
write(" "); write(" ");
break; break;
case tok!"is": case tok!"is":
if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}") && !peekBackIsKeyword()) if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}", tok!"=") && !peekBackIsKeyword())
write(" "); write(" ");
writeToken(); writeToken();
if (!currentIs(tok!"(") && !currentIs(tok!"{")) if (!currentIs(tok!"(") && !currentIs(tok!"{"))

View File

@ -0,0 +1 @@
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));

1
tests/issue0152.d Normal file
View File

@ -0,0 +1 @@
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));

View File

@ -0,0 +1 @@
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));