Fix #71
This commit is contained in:
parent
f593299623
commit
5f07d15a34
|
@ -6144,7 +6144,9 @@ protected:
|
|||
{
|
||||
auto b = setBookmark();
|
||||
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()
|
||||
|
|
Loading…
Reference in New Issue