Lines Matching refs:associativity
190 * Precedence Decl:: Declaring terminals with precedence and associativity.
2471 `%left' and `%right' (right associativity) take the place of `%token'
2472 which is used to declare a token type name without associativity.
2475 associativity.)
3558 Values: Value Type.), associativity, or precedence (*note Operator
3578 value data type (*note Value Type::), associativity, or precedence
4510 * Precedence Decl:: Declaring terminals with precedence and associativity.
4552 of `%token', if you wish to specify associativity and precedence.
4612 and specify its precedence and associativity, all at once. These are
4626 But in addition, they specify the associativity and relative precedence
4629 * The associativity of an operator OP determines how repeated uses
4632 left-associativity (grouping X with Y first) and `%right'
4633 specifies right-associativity (grouping Y with Z first).
4634 `%nonassoc' specifies no associativity, which means that `X OP Y
4640 their associativity. When two tokens declared in different
5145 associativity specified (*note Token Type Names: Token Decl.).
6619 token is `-': shifting makes right-associativity.
6629 list of tokens, which are operators whose precedence and associativity
6678 have equal precedence, the choice is made based on the associativity of
6692 Using properly precedence and associativity directives can help fixing
6708 which case associativity is used to solve the conflict. To preserve
6709 the shift action, use right associativity:
6935 Another solution relies on associativity: provide both the token and
8189 conflict was solved thanks to associativity and precedence directives.
8247 the associativity of `/' is not specified.
8990 precedence and associativity directives.
10858 Bison declaration to assign left associativity to token(s). *Note
10921 Bison declaration to assign right associativity to token(s).
11241 Left associativity
11242 Operators having left associativity are analyzed from left to
12156 * associativity: Why Precedence. (line 34)