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