mirror of
https://github.com/dlang-community/D-Scanner.git
synced 2025-04-26 05:10:03 +03:00
Fix #71
This commit is contained in:
parent
f593299623
commit
5f07d15a34
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue