This commit is contained in:
Kovid Goyal 2022-12-19 16:36:44 +05:30
commit 8359b46e3e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -216,7 +216,7 @@ General Program Mode
top_expression ::= or_expression top_expression ::= or_expression
or_expression ::= and_expression [ '||' and_expression ]* or_expression ::= and_expression [ '||' and_expression ]*
and_expression ::= not_expression [ '&&' not_expression ]* and_expression ::= not_expression [ '&&' not_expression ]*
not_expression ::= [ '!' not_expression ]* | compare_exp not_expression ::= [ '!' not_expression ]* | concatenate_expr
concatenate_expr::= compare_expr [ '&' compare_expr ]* concatenate_expr::= compare_expr [ '&' compare_expr ]*
compare_expr ::= add_sub_expr [ compare_op add_sub_expr ] compare_expr ::= add_sub_expr [ compare_op add_sub_expr ]
compare_op ::= '==' | '!=' | '>=' | '>' | '<=' | '<' | 'in' | 'inlist' | compare_op ::= '==' | '!=' | '>=' | '>' | '<=' | '<' | 'in' | 'inlist' |