The associativity of an operator is the name given to the convention used when inserting implicit parentheses.
An operator $\oplus$ is said to be left associative if a chain $u \oplus v \oplus w$ is considered syntactically identical to $(u \oplus v) \oplus w$, that is, having the same AST.
An operator $\oplus$ is said to be right associative if a chain $u \oplus v \oplus w$ is considered syntactically identical to $u \oplus (v \oplus w)$, that is, having the same AST.