in maven-javascript-plugin/src/main/java/org/apache/myfaces/trinidadbuild/plugin/javascript/javascript20parser/JSParser20.java [598:658]
final public void FieldName() throws ParseException {
/*@bgen(jjtree) FieldName */
ASTFieldName jjtn000 = new ASTFieldName(this, JJTFIELDNAME);
boolean jjtc000 = true;
jjtree.openNodeScope(jjtn000);
try {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case STRING_LITERAL:
jj_consume_token(STRING_LITERAL);
break;
case DECIMAL_LITERAL:
jj_consume_token(DECIMAL_LITERAL);
break;
case GET:
case INCLUDE:
case PRIVATE:
case PUBLIC:
case SET:
case PROTECTED:
case IDENTIFIER:
SimpleQualifiedIdentifier();
break;
case LPAREN:
jj_consume_token(LPAREN);
AssignmentExpression();
jj_consume_token(RPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case QUALIFIER:
jj_consume_token(QUALIFIER);
Identifier();
break;
default:
jj_la1[12] = jj_gen;
;
}
break;
default:
jj_la1[13] = 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);
}
}
}