* @return The expression parsed.
* @throws PropertyException For errors parsing the expression.
*/
private ExprPrimary parsePrimaryExpr()
throws PropertyException {
ExprPrimary prop;
final int currentToken = this.getCurrentToken();
switch (currentToken) {
case TOK_LPAR:
next();
prop = parseInnerExpression();