This commit is contained in:
Hackerpilot 2013-10-29 15:14:17 -07:00
parent f593299623
commit 5f07d15a34
1 changed files with 3 additions and 1 deletions

View File

@ -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()