* @return The expression parsed.
* @throws PropertyException For errors parsing the expression.
*/
private ExprAdditive parseAdditiveExpr() throws PropertyException {
// Evaluate and put result on the operand stack
ExprAdditive prop = parseMultiplicativeExpr();
loop:
for (;;) {
switch (getCurrentToken()) {
case TOK_PLUS:
next();