Lines Matching full:precedence
37 6: Precedence
44 .I precedence
61 As disambiguating rules, the user specifies the precedence, or binding
71 All of the tokens on the same line are assumed to have the same precedence level
73 order of increasing precedence or binding strength.
79 describes the precedence and associativity of the four arithmetic operators.
80 Plus and minus are left associative, and have lower precedence than
115 unary operators must, in general, be given a precedence.
121 The keyword, %prec, changes the precedence level associated with a particular grammar rule.
125 causes the precedence of the grammar rule to become that of the following token name or literal.
126 For example, to make unary minus have the same precedence as multiplication the rules might resembl…
152 A precedence and associativity is associated with each grammar rule; it is the precedence
155 Some grammar rules may have no precedence and associativity associated with them.
158 and either the input symbol or the grammar rule has no precedence and associativity,
163 have precedence and associativity associated with them, then the conflict is resolved
164 in favor of the action (shift or reduce) associated with the higher precedence.
169 Conflicts resolved by precedence are not counted in the number of shift/reduce and reduce/reduce