Skip to content

Commit

Permalink
Merge pull request #240 from bshifter/kw-plus-assign-precedence-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAnno authored Aug 7, 2024
2 parents d79b727 + 70db803 commit 1e56f25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/cfg-grammar.y
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ main_location_print (FILE *yyo, YYLTYPE const * const yylocp)
%left ';'

/* operators in the filter language, the order of this determines precedence */
%right KW_ASSIGN 9000
%right KW_PLUS_ASSIGN 9001
%right KW_ASSIGN 9000, KW_PLUS_ASSIGN 9001
%right '?' ':'
%right KW_NULL_COALESCING
%left KW_OR 9010
Expand Down

0 comments on commit 1e56f25

Please sign in to comment.