Remove redundant parentheses in ANY token declaration

This commit is contained in:
Kiril Kovachev 2025-03-07 15:58:50 +00:00
parent 70a36b938c
commit ee75ecdcb8

View File

@ -17,7 +17,7 @@ PARSER_END(Assignment)
TOKEN : { <LEFT_PAREN: "(">}
TOKEN : { <RIGHT_PAREN: ")">}
TOKEN : { <NEWLINE: "\n">}
TOKEN : { <ANY: (~[])>}
TOKEN : { <ANY: ~[]>}
void Start() : {}
{