8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 23:23:04 +01:00
firebird-mirror/extern/btyacc/test/t1.y

23 lines
250 B
Plaintext
Raw Normal View History

2006-04-19 11:53:27 +02:00
%left LO '+' '-'
%left HI '*' '/' '%'
%nonassoc UNARY
%%
expr: expr op1 expr %prec LO
| expr op2 expr %prec HI
| unary expr %prec UNARY
;
op1 : '+'
| '-'
;
op2 : '*'
| '/'
| '%'
;
unary : '+' | '-' | '*' | '&' ;