GNU Info

Info Node: (bison.info)Precedence Examples

(bison.info)Precedence Examples


Next: How Precedence Prev: Using Precedence Up: Precedence
Enter node , (file) or (file)node

Precedence Examples
-------------------

   In our example, we would want the following declarations:

     %left '<'
     %left '-'
     %left '*'

   In a more complete example, which supports other operators as well,
we would declare them in groups of equal precedence.  For example,
`'+'' is declared with `'-'':

     %left '<' '>' '=' NE LE GE
     %left '+' '-'
     %left '*' '/'

(Here `NE' and so on stand for the operators for "not equal" and so on.
We assume that these tokens are more than one character long and
therefore are represented by names, not character literals.)


automatically generated by info2www version 1.2.2.9