*/
private Property parseProperty() throws PropertyException {
next();
if (currentToken == TOK_EOF) {
// if prop value is empty string, force to StringProperty
return new StringProperty("");
}
Property prop = parseAdditiveExpr();
if (currentToken != TOK_EOF)
throw new PropertyException("unexpected token");
return prop;