mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
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
@ -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 New Issue
Block a user