Given this grammar: ``` start : a start | a_multi a.-1 : "a" a_multi : /a+/ ``` The plugin indicates a syntax error at `-` in the second line: > LarkTokenType.NUMBER expected, got '-' This is a valid grammar, however.