示例#1
0
/* Production 55, chapter 3.4, corba 2.3.1 */
  public void signed_int() {
 /*@bgen(jjtree) signed_int */
  ASTsigned_int jjtn000 = new ASTsigned_int(this, IDLParserTreeConstants.JJTSIGNED_INT);
  bool jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
    try {
      if (jj_2_19(3)) {
        signed_longlong_int();
      } else if (jj_2_20(3)) {
        signed_long_int();
      } else {
        switch ((jj_ntk==-1)?jj_ntk_calc():jj_ntk) {
        case 53:
          signed_short_int();
          break;
        default:
          jj_la1[60] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
          break;
        }
      }
    } catch (Exception jjte000) {
    if (jjtc000) {
      jjtree.clearNodeScope(jjtn000);
      jjtc000 = false;
    } else {
      jjtree.popNode();
    }
  {if (true) throw ;}
    } finally {
    if (jjtc000) {
      jjtree.closeNodeScope(jjtn000, true);
    }
    }
  }
 /**
  * @see parser.IDLParserVisitor#visit(ASTsigned_int, Object)
  * @param data unused
  * @return a TypeContainer for the type represented by the node
  */
 public Object visit(ASTsigned_int node, Object data) {
     // <signed_int> ::= <singed_short_int> || <signed_long_int> || <signed_longlong_int>
     return node.jjtGetChild(0).jjtAccept(this, data);
 }