Closed lachlanmcdonald closed 6 years ago
The grammar omits the operands listed under the "Comparison Operators" heading.
operator = '&&' | '||' ;
Could perhaps become:
operator = '&&' | '||' | '<=' | '<' | '>' | '==' | '!=' ;
Added the comparison operators in b96976a. See #53 for && and ||. See #56 for in.
&&
||
in
The grammar omits the operands listed under the "Comparison Operators" heading.
Could perhaps become: