Fix #152
This commit is contained in:
parent
f28acb7ead
commit
98686f7dd1
|
@ -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!"{"))
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));
|
|
@ -0,0 +1 @@
|
||||||
|
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));
|
|
@ -0,0 +1 @@
|
||||||
|
enum IsPathHandler(alias T) = is(PathHandler == typeof(T));
|
Loading…
Reference in New Issue