253254255256257258259260261262263
private void parseOperator(ExprToken e) throws ExprException { switch (e.type) { case Plus: Expr lhs = current; current = new ExprAddition(lhs, null); break; case Minus: lhs = current; current = new ExprSubtraction(lhs, null); break;