Fixes syntactic priority of '.' .
Dot in expressions like net.len definitely should have the highhest priority.
This commit is contained in:
parent
b2b7bbfc69
commit
112d71a73f
1 changed files with 2 additions and 1 deletions
|
@ -63,10 +63,11 @@ CF_DECLS
|
|||
|
||||
%nonassoc PREFIX_DUMMY
|
||||
%left AND OR
|
||||
%nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ PO PC
|
||||
%nonassoc '=' '<' '>' '~' GEQ LEQ NEQ PO PC
|
||||
%left '+' '-'
|
||||
%left '*' '/' '%'
|
||||
%left '!'
|
||||
%nonassoc '.'
|
||||
|
||||
CF_KEYWORDS(DEFINE, ON, OFF, YES, NO)
|
||||
|
||||
|
|
Loading…
Reference in a new issue