I'm trying to add support for arrays in my programming language and am having trouble
Array
: '[' Expr ("," Expr)* ']'
{{ $$ = ['ArrayList', $1]; }}
| '[' Expr ']'
{{ $$ = ['Array', $2]; }}
| '[' ']'
{{ $$ = ['Empty']; }}
;
This however, will not parse "[1,2,3,4]." Jison tells me that it expects "]" but it got ",". Any ideas?