// parselet with the same precedence appear on the right, which will then
// take *this* parselet's result as its left-hand argument.
Expression right = parser.parseExpression(
mPrecedence - (mIsRight ? 1 : 0));
return new OperatorExpression(left, token.getType(), right);
}