Lines Matching refs:associativity
227 * Precedence Decl:: Declaring terminals with precedence and associativity.
1962 @code{%left} and @code{%right} (right associativity) take the place of
1964 associativity. (These tokens are single-character literals, which
1966 the associativity.)
3222 Semantic Values}), associativity, or precedence (@pxref{Precedence,
3246 value data type (@pxref{Value Type}), associativity, or precedence
4375 * Precedence Decl:: Declaring terminals with precedence and associativity.
4423 associativity and precedence. @xref{Precedence Decl, ,Operator
4498 declare a token and specify its precedence and associativity, all at
4518 But in addition, they specify the associativity and relative precedence for
4523 The associativity of an operator @var{op} determines how repeated uses
4527 left-associativity (grouping @var{x} with @var{y} first) and
4528 @code{%right} specifies right-associativity (grouping @var{y} with
4529 @var{z} first). @code{%nonassoc} specifies no associativity, which
4536 precedence and nest together according to their associativity.
5144 or associativity specified (@pxref{Token Decl, ,Token Type Names}).
6908 @cindex associativity
6916 makes right-associativity.
6927 associativity is being declared. The @code{%left} declaration makes all
6974 precedence, the choice is made based on the associativity of that
6985 Using properly precedence and associativity directives can help fixing
7005 associativity is used to solve the conflict. To preserve the shift action,
7006 use right associativity:
7301 Another solution relies on associativity: provide both the token and the
8678 solved thanks to associativity and precedence directives. If invoked with
8748 also because the associativity of @samp{/} is not specified.
9563 precedence and associativity directives.
11695 Bison declaration to assign left associativity to token(s).
11777 Bison declaration to assign right associativity to token(s).
12135 @item Left associativity
12136 Operators having left associativity are analyzed from left to right:
12357 @c LocalWords: associativity subclasses precedences unresolvable runnable