Lines Matching full:prec
2459 | '-' exp %prec NEG { $$ = -$2; }
2483 The other important new feature is the `%prec' in the grammar
2484 section for the unary minus operator. The `%prec' simply instructs
2634 | '-' exp %prec NEG { $$ = -$2; }
2857 | '-' exp %prec NEG { $$ = -$2; }
6736 precedence, you need to use an additional mechanism: the `%prec'
6739 The `%prec' modifier declares the precedence of a particular rule by
6744 %prec TERMINAL-SYMBOL
6752 Here is how `%prec' solves the problem of unary minus. First,
6768 | '-' exp %prec UMINUS
6918 relies on precedences: use `%prec' to give a lower precedence to the
6926 | sequence word %prec "sequence"
6927 | sequence redirect %prec "sequence"
6942 | sequence word %prec "word"
6943 | sequence redirect %prec "redirect"
7136 `%left' or `%prec'), then the parser explores all potential
10907 -- Directive: %prec
12072 * %prec <1>: Contextual Precedence.
12074 * %prec: Table of Symbols. (line 208)