Fixes syntactic priority of '.' .

Dot in expressions like net.len definitely should have the highhest
priority.
This commit is contained in:
Ondrej Zajicek 2010-10-08 14:25:53 +02:00
parent b2b7bbfc69
commit 112d71a73f

View file

@ -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)