forked from lix-project/lix
Merge pull request #2303 from volth/patch-4
parser.y: fix assoc of -> and < > <= >=
This commit is contained in:
commit
a7fb7d3cde
|
@ -273,11 +273,11 @@ void yyerror(YYLTYPE * loc, yyscan_t scanner, ParseData * data, const char * err
|
||||||
%token IND_STRING_OPEN IND_STRING_CLOSE
|
%token IND_STRING_OPEN IND_STRING_CLOSE
|
||||||
%token ELLIPSIS
|
%token ELLIPSIS
|
||||||
|
|
||||||
%nonassoc IMPL
|
%right IMPL
|
||||||
%left OR
|
%left OR
|
||||||
%left AND
|
%left AND
|
||||||
%nonassoc EQ NEQ
|
%nonassoc EQ NEQ
|
||||||
%left '<' '>' LEQ GEQ
|
%nonassoc '<' '>' LEQ GEQ
|
||||||
%right UPDATE
|
%right UPDATE
|
||||||
%left NOT
|
%left NOT
|
||||||
%left '+' '-'
|
%left '+' '-'
|
||||||
|
|
Loading…
Reference in a new issue