Files
bison/tests
Valentin Tolmer f8a710c6f4 syntax: introducing %gprec for precedence groups
It is now possible to introduce precedence groups, with precedence
relationships inside the group, but not with the outside tokens.  Ex:

%gprec arith {
  %left '+' '-'
  %left '*' '/'
  %right '^'
}

%gprec {
  %left OR
  %left AND
}

%left OTHER
%precedence OTHER2

Here, the arithmetical operators (in the "arith" group) can be compared, the
boolean operators can be compared, but OTHER can only be compared to OTHER2.

* src/gram.c, src/gram.h, src/scan-gram.l, src/parse-gram.y: {} blocks after
%gprec are understood by the lexer
* src/parse-gram.y: New syntax
* tests/input.at, tests/regression.at: Fix due to lexer change
2013-08-01 15:24:52 +02:00
..
2008-11-16 19:46:16 +01:00
2013-04-08 13:44:57 +02:00
2013-04-08 13:44:57 +02:00
2013-06-21 11:38:47 +02:00
2013-06-13 10:38:14 +02:00
2013-04-08 13:44:57 +02:00
2013-07-03 08:39:41 +02:00
2013-04-08 13:44:57 +02:00
2013-04-08 13:44:57 +02:00
2013-04-08 13:44:57 +02:00
2013-04-08 13:44:57 +02:00
2013-04-08 13:44:57 +02:00
2013-06-13 10:38:14 +02:00
2013-04-08 13:44:57 +02:00