in maven2-plugins/myfaces-javascript-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/javascript/javascript20parser/JSParser20.java [841:935]
final public void PostfixExpression() throws ParseException {
/*@bgen(jjtree) PostfixExpression */
ASTPostfixExpression jjtn000 = new ASTPostfixExpression(this, JJTPOSTFIXEXPRESSION);
boolean jjtc000 = true;
jjtree.openNodeScope(jjtn000);
try {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case GET:
case INCLUDE:
case PRIVATE:
case PUBLIC:
case SET:
case PROTECTED:
case IDENTIFIER:
AttributeExpression();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INCR:
case DECR:
PostfixOp();
break;
default:
jj_la1[16] = jj_gen;
;
}
break;
case FALSE:
case FUNCTION:
case NEW:
case NULL:
case THIS:
case TRUE:
case DECIMAL_LITERAL:
case HEX_LITERAL:
case OCTAL_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
case REGULAR_EXPRESSION:
case LPAREN:
case LBRACE:
case LBRACKET:
token_source.setRegInvalid();
FullPostfixExpression();
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LPAREN:
case LBRACKET:
case DOT:
;
break;
default:
jj_la1[17] = jj_gen;
break label_4;
}
PropertyOrArguments();
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INCR:
case DECR:
PostfixOp();
break;
default:
jj_la1[18] = jj_gen;
;
}
break;
case SUPER:
SuperExpression();
PropertyOperator();
break;
default:
jj_la1[19] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
} catch (Throwable jjte000) {
if (jjtc000) {
jjtree.clearNodeScope(jjtn000);
jjtc000 = false;
} else {
jjtree.popNode();
}
if (jjte000 instanceof RuntimeException) {
{if (true) throw (RuntimeException)jjte000;}
}
if (jjte000 instanceof ParseException) {
{if (true) throw (ParseException)jjte000;}
}
{if (true) throw (Error)jjte000;}
} finally {
if (jjtc000) {
jjtree.closeNodeScope(jjtn000, true);
}
}
}