Fix #71
This commit is contained in:
parent
f593299623
commit
5f07d15a34
|
@ -6144,7 +6144,9 @@ protected:
|
||||||
{
|
{
|
||||||
auto b = setBookmark();
|
auto b = setBookmark();
|
||||||
scope (exit) goToBookmark(b);
|
scope (exit) goToBookmark(b);
|
||||||
return parseType() !is null;
|
if (parseType() is null) return false;
|
||||||
|
if (currentIsOneOf(TokenType.comma, TokenType.rParen)) return true;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isAttribute()
|
bool isAttribute()
|
||||||
|
|
Loading…
Reference in New Issue