Right-associative binary operator chain.
Parses p (op p)* and folds right: a op (b op (c op d)).
p (op p)*
a op (b op (c op d))
Parser<E, A> chainr1(Parser<E, A Function(A, A)> op) => comb.chainr1<E, A>(this, op);