/* Generated By:JJTree&JavaCC: Do not edit this line. JxpParser.java */
/*
 * Copyright (C) 2004 TiongHiang Lee
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not,  write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Email: thlee@onemindsoft.org
 */
package org.onemind.jxp.parser;
import java.io.*;
import java.util.*;
import org.onemind.commons.java.lang.*;

public class JxpParser/*@bgen(jjtree)*/implements JxpParserTreeConstants, JxpParserConstants {/*@bgen(jjtree)*/
  protected JJTJxpParserState jjtree = new JJTJxpParserState();public static void main(String args[]) throws ParseException, IOException
        {
                System.out.println("Dumping structure for " + args[0]);
                JxpParser parser= new JxpParser(new FileInputStream(args[0]));
                AstJxpDocument doc= parser.JxpDocument();
                doc.dump("");
        }

        void jjtreeOpenNodeScope(Node n)
        {
                ((SimpleNode) n)._line= getToken(0).beginLine;
                ((SimpleNode) n)._col= getToken(0).beginColumn;
        }

        void jjtreeCloseNodeScope(Node n)
        {}

        static String normalizeStringLiteral(StringBuffer image, char quote){
                        String str = image.substring(1, image.length() - 1); //remove the quotes
                        StringBuffer copy = new StringBuffer();
                        boolean escape = false;
                        for (int i=0; i<str.length(); i++){
                                char ch = str.charAt(i);
                                if (escape){
                                        switch (ch){
                                                case '\\':
                                                        copy.append('\\');
                                                        break;
                                                case 't':
                                                        copy.append('\t');
                                                        break;
                                                case 'n':
                                                        copy.append('\n');
                                                        break;
                                                case 'r':
                                                        copy.append('\r');
                                                        break;
                                                default:
                                                        copy.append(ch);
                                                        break;
                                        }
                                        escape = false;
                                } else if (ch=='\\'){
                                        escape = true;
                                } else {
                                        copy.append(ch);
                                }
                        }
//    		str = str.replaceAll("\\\\\"", "\"");
//    		str = str.replaceAll("\\\\\t", "\"");
//    		str = str.replaceAll("\\\\\"", "\"");			
//  	  	copy.append(str.replaceAll("\\\\\\\\", "\\\\"));  
//    		str = str.replaceAll("\\\\\\\\", "\\\\");
                        return copy.toString();
                }

/*****************************************
* THE SJI GRAMMER START HERE             *
*****************************************/
  final public AstJxpDocument JxpDocument() throws ParseException {
                                /*@bgen(jjtree) JxpDocument */
  AstJxpDocument jjtn000 = new AstJxpDocument(JJTJXPDOCUMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      label_1:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case CONTENT:
        case BQ_IN:
        case BQBQ:
        case JSP_DIRECTIVE:
        case JSP_DECLARATION:
        case JSP_DECLARATION_TAG:
        case JSP_EXPRESSION:
        case JSP_EXPRESSION_TAG:
        case JSP_EL:
        case NO_PARSE_CONTENT:
        case BOOLEAN:
        case BREAK:
        case BYTE:
        case CHAR:
        case CONTINUE:
        case DO:
        case DOUBLE:
        case FLOAT:
        case FOR:
        case IF:
        case IMPORT:
        case INT:
        case LONG:
        case NEW:
        case RETURN:
        case SHORT:
        case STATIC:
        case SWITCH:
        case SYNCHRONIZED:
        case THROW:
        case TRY:
        case VOID:
        case WHILE:
        case ASSERT:
        case VAR:
        case FUNCTION:
        case EXIT:
        case NULL:
        case TRUE:
        case FALSE:
        case INTEGER_LITERAL:
        case FLOATING_POINT_LITERAL:
        case CHARACTER_LITERAL:
        case STRING_LITERAL:
        case JSP_STRING_LITERAL:
        case IDENTIFIER:
        case LBRACE:
        case LPAREN:
        case SEMICOLON:
        case INCR:
        case DECR:
          ;
          break;
        default:
          jj_la1[0] = jj_gen;
          break label_1;
        }
        JxpStatement();
      }
      jj_consume_token(0);
          jjtree.closeNodeScope(jjtn000, true);
          jjtc000 = false;
          jjtreeCloseNodeScope(jjtn000);
                {if (true) return (AstJxpDocument) jjtn000;}
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
    throw new Error("Missing return statement in function");
  }

  final public void JxpStatement() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case CONTENT:
    case BQBQ:
    case NO_PARSE_CONTENT:
      Content();
      break;
    case BQ_IN:
    case BOOLEAN:
    case BREAK:
    case BYTE:
    case CHAR:
    case CONTINUE:
    case DO:
    case DOUBLE:
    case FLOAT:
    case FOR:
    case IF:
    case IMPORT:
    case INT:
    case LONG:
    case NEW:
    case RETURN:
    case SHORT:
    case STATIC:
    case SWITCH:
    case SYNCHRONIZED:
    case THROW:
    case TRY:
    case VOID:
    case WHILE:
    case ASSERT:
    case VAR:
    case FUNCTION:
    case EXIT:
    case NULL:
    case TRUE:
    case FALSE:
    case INTEGER_LITERAL:
    case FLOATING_POINT_LITERAL:
    case CHARACTER_LITERAL:
    case STRING_LITERAL:
    case JSP_STRING_LITERAL:
    case IDENTIFIER:
    case LBRACE:
    case LPAREN:
    case SEMICOLON:
    case INCR:
    case DECR:
      JavaStatement();
      break;
    case JSP_DIRECTIVE:
    case JSP_DECLARATION:
    case JSP_DECLARATION_TAG:
    case JSP_EXPRESSION:
    case JSP_EXPRESSION_TAG:
    case JSP_EL:
      JspStatement();
      break;
    default:
      jj_la1[1] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void Content() throws ParseException {
                  /*@bgen(jjtree) Content */
  AstContent jjtn000 = new AstContent(JJTCONTENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case CONTENT:
        jj_consume_token(CONTENT);
          jjtree.closeNodeScope(jjtn000, true);
          jjtc000 = false;
          jjtreeCloseNodeScope(jjtn000);
                jjtn000._data= token.image;
        break;
      case BQBQ:
        jj_consume_token(BQBQ);
      jjtree.closeNodeScope(jjtn000, true);
      jjtc000 = false;
      jjtreeCloseNodeScope(jjtn000);
                        jjtn000._data = "`";
        break;
      case NO_PARSE_CONTENT:
        jj_consume_token(NO_PARSE_CONTENT);
      jjtree.closeNodeScope(jjtn000, true);
      jjtc000 = false;
      jjtreeCloseNodeScope(jjtn000);
                        jjtn000._data = token.image;
        break;
      default:
        jj_la1[2] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void JspStatement() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case JSP_DIRECTIVE:
      jj_consume_token(JSP_DIRECTIVE);
      JspDirective();
      jj_consume_token(JSP_END_TAG);
      break;
    case JSP_DECLARATION:
      jj_consume_token(JSP_DECLARATION);
      FieldDeclaration();
      jj_consume_token(SEMICOLON);
                                                           token_source.SwitchTo(JXP);
      jj_consume_token(JSP_END_TAG);
      break;
    case JSP_DECLARATION_TAG:
      jj_consume_token(JSP_DECLARATION_TAG);
      FieldDeclaration();
      jj_consume_token(SEMICOLON);
                                                               token_source.SwitchTo(JXP);
      jj_consume_token(JSP_DECLARATION_TAG_END);
      break;
    case JSP_EXPRESSION:
      jj_consume_token(JSP_EXPRESSION);
      Expression();
                                        AstPrintStatement jjtn001 = new AstPrintStatement(JJTPRINTSTATEMENT);
                                        boolean jjtc001 = true;
                                        jjtree.openNodeScope(jjtn001);
                                        jjtreeOpenNodeScope(jjtn001);
      try {
        jj_consume_token(JSP_END_TAG);
      } finally {
                                        if (jjtc001) {
                                          jjtree.closeNodeScope(jjtn001,  1);
                                          jjtreeCloseNodeScope(jjtn001);
                                        }
      }
      break;
    case JSP_EXPRESSION_TAG:
      jj_consume_token(JSP_EXPRESSION_TAG);
      Expression();
                                            AstPrintStatement jjtn002 = new AstPrintStatement(JJTPRINTSTATEMENT);
                                            boolean jjtc002 = true;
                                            jjtree.openNodeScope(jjtn002);
                                            jjtreeOpenNodeScope(jjtn002);
      try {
        jj_consume_token(JSP_EXPRESSION_TAG_END);
      } finally {
                                            if (jjtc002) {
                                              jjtree.closeNodeScope(jjtn002,  1);
                                              jjtreeCloseNodeScope(jjtn002);
                                            }
      }
      break;
    case JSP_EL:
      jj_consume_token(JSP_EL);
      Expression();
                                AstPrintStatement jjtn003 = new AstPrintStatement(JJTPRINTSTATEMENT);
                                boolean jjtc003 = true;
                                jjtree.openNodeScope(jjtn003);
                                jjtreeOpenNodeScope(jjtn003);
      try {
        jj_consume_token(JSP_END_EL);
      } finally {
                                if (jjtc003) {
                                  jjtree.closeNodeScope(jjtn003,  1);
                                  jjtreeCloseNodeScope(jjtn003);
                                }
      }
      break;
    default:
      jj_la1[3] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void JspDirective() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case PAGE:
      PageDirective();
      break;
    case INCLUDE:
      IncludeDirective();
      break;
    default:
      jj_la1[4] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void PageDirective() throws ParseException {
 /*@bgen(jjtree) PageDirective */
        AstPageDirective jjtn000 = new AstPageDirective(JJTPAGEDIRECTIVE);
        boolean jjtc000 = true;
        jjtree.openNodeScope(jjtn000);
        jjtreeOpenNodeScope(jjtn000);Map attrs = new HashMap();
        jjtn000._data = attrs;
        String id = null;
    try {
      jj_consume_token(PAGE);
      label_2:
      while (true) {
        jj_consume_token(IDENTIFIER);
                               id = token.image;
        jj_consume_token(ASSIGN);
        jj_consume_token(STRING_LITERAL);
                        String str = token.image;
                        attrs.put(id, str );
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case IDENTIFIER:
          ;
          break;
        default:
          jj_la1[5] = jj_gen;
          break label_2;
        }
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void IncludeDirective() throws ParseException {
 /*@bgen(jjtree) IncludeDirective */
        AstIncludeDirective jjtn000 = new AstIncludeDirective(JJTINCLUDEDIRECTIVE);
        boolean jjtc000 = true;
        jjtree.openNodeScope(jjtn000);
        jjtreeOpenNodeScope(jjtn000);Map attrs = new HashMap();
        jjtn000._data = attrs;
        String id = null;
    try {
      jj_consume_token(INCLUDE);
      label_3:
      while (true) {
        jj_consume_token(IDENTIFIER);
                               id = token.image;
        jj_consume_token(ASSIGN);
        jj_consume_token(STRING_LITERAL);
                        String str = token.image;
                        attrs.put(id, str );
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case IDENTIFIER:
          ;
          break;
        default:
          jj_la1[6] = jj_gen;
          break label_3;
        }
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

/*****************************************
* Supported java grammer start here     *
*****************************************/
  final public void JavaStatement() throws ParseException {
    if (jj_2_1(2)) {
      LabeledStatement();
    } else if (jj_2_2(2)) {
      StaticImportDeclaration();
    } else {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case IMPORT:
        ImportDeclaration();
        break;
      default:
        jj_la1[7] = jj_gen;
        if (jj_2_3(2147483647)) {
          FieldDeclaration();
          jj_consume_token(SEMICOLON);
        } else {
          switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
          case LBRACE:
            Block();
            break;
          case SEMICOLON:
            EmptyStatement();
            break;
          case BOOLEAN:
          case BYTE:
          case CHAR:
          case DOUBLE:
          case FLOAT:
          case INT:
          case LONG:
          case NEW:
          case SHORT:
          case VOID:
          case VAR:
          case NULL:
          case TRUE:
          case FALSE:
          case INTEGER_LITERAL:
          case FLOATING_POINT_LITERAL:
          case CHARACTER_LITERAL:
          case STRING_LITERAL:
          case JSP_STRING_LITERAL:
          case IDENTIFIER:
          case LPAREN:
          case INCR:
          case DECR:
            StatementExpression();
            jj_consume_token(SEMICOLON);
            break;
          case SWITCH:
            SwitchStatement();
            break;
          case IF:
            IfStatement();
            break;
          case WHILE:
            WhileStatement();
            break;
          case DO:
            DoStatement();
            break;
          default:
            jj_la1[8] = jj_gen;
            if (jj_2_4(2147483647)) {
              EnhancedForStatement();
            } else {
              switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
              case FOR:
                ForStatement();
                break;
              case BREAK:
                BreakStatement();
                break;
              case CONTINUE:
                ContinueStatement();
                break;
              case RETURN:
                ReturnStatement();
                break;
              case THROW:
                ThrowStatement();
                break;
              case SYNCHRONIZED:
                SynchronizedStatement();
                break;
              case TRY:
                TryStatement();
                break;
              case ASSERT:
                AssertStatement();
                break;
              case FUNCTION:
                FunctionDeclaration();
                break;
              case BQ_IN:
                PrintStatement();
                break;
              case EXIT:
                ExitStatement();
                break;
              default:
                jj_la1[9] = jj_gen;
                jj_consume_token(-1);
                throw new ParseException();
              }
            }
          }
        }
      }
    }
  }

  final public void StaticImportDeclaration() throws ParseException {
                                  /*@bgen(jjtree) StaticImportDeclaration */
  AstStaticImportDeclaration jjtn000 = new AstStaticImportDeclaration(JJTSTATICIMPORTDECLARATION);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IMPORT);
      jj_consume_token(STATIC);
      Name();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case DOT:
        jj_consume_token(DOT);
        jj_consume_token(STAR);
                                                          jjtn000._data= token.image;
        break;
      default:
        jj_la1[10] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ImportDeclaration() throws ParseException {
                            /*@bgen(jjtree) ImportDeclaration */
  AstImportDeclaration jjtn000 = new AstImportDeclaration(JJTIMPORTDECLARATION);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IMPORT);
      Name();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case DOT:
        jj_consume_token(DOT);
        jj_consume_token(STAR);
                                                          jjtn000._data= token.image;
        break;
      default:
        jj_la1[11] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

/*
// This production is to determine lookahead only.
void MethodDeclarationLookahead() #void: {}
{
	(
		<PUBLIC> 
		|
		<PROTECTED> 
		|
		<PRIVATE> 
		|
		<STATIC> 
		|
		<ABSTRACT> 
		|
		<FINAL> 
		|
		<NATIVE> 
		|
		<SYNCHRONIZED> 
		|
		"strictfp" 
	)?
	ResultType() <IDENTIFIER> "(" 
}
*/
  final public void FieldDeclaration() throws ParseException {
                           /*@bgen(jjtree) FieldDeclaration */
  AstFieldDeclaration jjtn000 = new AstFieldDeclaration(JJTFIELDDECLARATION);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case STATIC:
        jj_consume_token(STATIC);
                     jjtn000._data = token.image;
        break;
      default:
        jj_la1[12] = jj_gen;
        ;
      }
      Type();
      VariableDeclarator();
      label_4:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case COMMA:
          ;
          break;
        default:
          jj_la1[13] = jj_gen;
          break label_4;
        }
        jj_consume_token(COMMA);
        VariableDeclarator();
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void VariableDeclarator() throws ParseException {
                             /*@bgen(jjtree) VariableDeclarator */
  AstVariableDeclarator jjtn000 = new AstVariableDeclarator(JJTVARIABLEDECLARATOR);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      VariableDeclaratorId();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case ASSIGN:
        jj_consume_token(ASSIGN);
        VariableInitializer();
        break;
      default:
        jj_la1[14] = jj_gen;
        ;
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void VariableDeclaratorId() throws ParseException {
 /*@bgen(jjtree) VariableDeclaratorId */
        AstVariableDeclaratorId jjtn000 = new AstVariableDeclaratorId(JJTVARIABLEDECLARATORID);
        boolean jjtc000 = true;
        jjtree.openNodeScope(jjtn000);
        jjtreeOpenNodeScope(jjtn000);AstVariableDeclaratorId idNode =  (AstVariableDeclaratorId)jjtn000;
    try {
      jj_consume_token(IDENTIFIER);
                                                          jjtn000._data = token.image;
      label_5:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LBRACKET:
          ;
          break;
        default:
          jj_la1[15] = jj_gen;
          break label_5;
        }
        jj_consume_token(LBRACKET);
        jj_consume_token(RBRACKET);
                                  idNode._dim++;
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void VariableInitializer() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case LBRACE:
      ArrayInitializer();
      break;
    case BOOLEAN:
    case BYTE:
    case CHAR:
    case DOUBLE:
    case FLOAT:
    case INT:
    case LONG:
    case NEW:
    case SHORT:
    case VOID:
    case VAR:
    case NULL:
    case TRUE:
    case FALSE:
    case JSP_EMPTY:
    case JSP_NOT:
    case INTEGER_LITERAL:
    case FLOATING_POINT_LITERAL:
    case CHARACTER_LITERAL:
    case STRING_LITERAL:
    case JSP_STRING_LITERAL:
    case IDENTIFIER:
    case LPAREN:
    case BANG:
    case TILDE:
    case INCR:
    case DECR:
    case PLUS:
    case MINUS:
      Expression();
      break;
    default:
      jj_la1[16] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void ArrayInitializer() throws ParseException {
                           /*@bgen(jjtree) ArrayInitializer */
  AstArrayInitializer jjtn000 = new AstArrayInitializer(JJTARRAYINITIALIZER);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(LBRACE);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case JSP_EMPTY:
      case JSP_NOT:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LBRACE:
      case LPAREN:
      case BANG:
      case TILDE:
      case INCR:
      case DECR:
      case PLUS:
      case MINUS:
        VariableInitializer();
        label_6:
        while (true) {
          if (jj_2_5(2)) {
            ;
          } else {
            break label_6;
          }
          jj_consume_token(COMMA);
          VariableInitializer();
        }
        break;
      default:
        jj_la1[17] = jj_gen;
        ;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case COMMA:
        jj_consume_token(COMMA);
        break;
      default:
        jj_la1[18] = jj_gen;
        ;
      }
      jj_consume_token(RBRACE);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ExitStatement() throws ParseException {
                        /*@bgen(jjtree) ExitStatement */
  AstExitStatement jjtn000 = new AstExitStatement(JJTEXITSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(EXIT);
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void FunctionDeclaration() throws ParseException {
                              /*@bgen(jjtree) FunctionDeclaration */
  AstFunctionDeclaration jjtn000 = new AstFunctionDeclaration(JJTFUNCTIONDECLARATION);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(FUNCTION);
      ResultType();
      FunctionDeclarator();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case 172:
        jj_consume_token(172);
        NameList();
        break;
      default:
        jj_la1[19] = jj_gen;
        ;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LBRACE:
        Block();
        break;
      case SEMICOLON:
        jj_consume_token(SEMICOLON);
        break;
      default:
        jj_la1[20] = 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void FunctionDeclarator() throws ParseException {
                             /*@bgen(jjtree) FunctionDeclarator */
  AstFunctionDeclarator jjtn000 = new AstFunctionDeclarator(JJTFUNCTIONDECLARATOR);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IDENTIFIER);
                       jjtn000._data = token.image;
      if (jj_2_6(2147483647)) {
        VariableParameters();
      } else {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LPAREN:
          FormalParameters();
          break;
        default:
          jj_la1[21] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
      }
      label_7:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LBRACKET:
          ;
          break;
        default:
          jj_la1[22] = jj_gen;
          break label_7;
        }
        jj_consume_token(LBRACKET);
        jj_consume_token(RBRACKET);
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void VariableParameters() throws ParseException {
                             /*@bgen(jjtree) VariableParameters */
  AstVariableParameters jjtn000 = new AstVariableParameters(JJTVARIABLEPARAMETERS);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(LPAREN);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case SHORT:
      case VAR:
      case IDENTIFIER:
        Type();
        jj_consume_token(DOTDOTDOT);
        jj_consume_token(IDENTIFIER);
                                                     jjtn000._data = token.image;
        break;
      default:
        jj_la1[23] = jj_gen;
        ;
      }
      jj_consume_token(RPAREN);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void FormalParameters() throws ParseException {
                           /*@bgen(jjtree) FormalParameters */
  AstFormalParameters jjtn000 = new AstFormalParameters(JJTFORMALPARAMETERS);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(LPAREN);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FINAL:
      case FLOAT:
      case INT:
      case LONG:
      case SHORT:
      case VAR:
      case IDENTIFIER:
        FormalParameter();
        label_8:
        while (true) {
          switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
          case COMMA:
            ;
            break;
          default:
            jj_la1[24] = jj_gen;
            break label_8;
          }
          jj_consume_token(COMMA);
          FormalParameter();
        }
        break;
      default:
        jj_la1[25] = jj_gen;
        ;
      }
      jj_consume_token(RPAREN);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void FormalParameter() throws ParseException {
 /*@bgen(jjtree) FormalParameter */
  AstFormalParameter jjtn000 = new AstFormalParameter(JJTFORMALPARAMETER);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case FINAL:
        jj_consume_token(FINAL);
        break;
      default:
        jj_la1[26] = jj_gen;
        ;
      }
      Type();
      VariableDeclaratorId();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case COLON:
        jj_consume_token(COLON);
        Expression();
        break;
      default:
        jj_la1[27] = jj_gen;
        ;
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

/*
* Type, name and expression syntax follows.
*/
  final public void Type() throws ParseException {
 /*@bgen(jjtree) Type */
        AstType jjtn000 = new AstType(JJTTYPE);
        boolean jjtc000 = true;
        jjtree.openNodeScope(jjtn000);
        jjtreeOpenNodeScope(jjtn000);AstType typeNode = (AstType)jjtn000;
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case SHORT:
      case VAR:
        PrimitiveType();
        break;
      case IDENTIFIER:
        Name();
        break;
      default:
        jj_la1[28] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
      label_9:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LBRACKET:
          ;
          break;
        default:
          jj_la1[29] = jj_gen;
          break label_9;
        }
        jj_consume_token(LBRACKET);
        jj_consume_token(RBRACKET);
                                                               typeNode._dim++;
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void PrimitiveType() throws ParseException {
                        /*@bgen(jjtree) PrimitiveType */
  AstPrimitiveType jjtn000 = new AstPrimitiveType(JJTPRIMITIVETYPE);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
        jj_consume_token(BOOLEAN);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Boolean.TYPE;
        break;
      case CHAR:
        jj_consume_token(CHAR);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Character.TYPE;
        break;
      case BYTE:
        jj_consume_token(BYTE);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Byte.TYPE;
        break;
      case SHORT:
        jj_consume_token(SHORT);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Short.TYPE;
        break;
      case INT:
        jj_consume_token(INT);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Integer.TYPE;
        break;
      case LONG:
        jj_consume_token(LONG);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Long.TYPE;
        break;
      case FLOAT:
        jj_consume_token(FLOAT);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Float.TYPE;
        break;
      case DOUBLE:
        jj_consume_token(DOUBLE);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Double.TYPE;
        break;
      case VAR:
        jj_consume_token(VAR);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Object.class;
        break;
      default:
        jj_la1[30] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ResultType() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case VOID:
      jj_consume_token(VOID);
      break;
    case BOOLEAN:
    case BYTE:
    case CHAR:
    case DOUBLE:
    case FLOAT:
    case INT:
    case LONG:
    case SHORT:
    case VAR:
    case IDENTIFIER:
      Type();
      break;
    default:
      jj_la1[31] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void Name() throws ParseException {
    /*@bgen(jjtree) Name */
        AstName jjtn000 = new AstName(JJTNAME);
        boolean jjtc000 = true;
        jjtree.openNodeScope(jjtn000);
        jjtreeOpenNodeScope(jjtn000);List l= new ArrayList();
    try {
      jj_consume_token(IDENTIFIER);
                                                          l.add(token.image);
      label_10:
      while (true) {
        if (jj_2_7(2147483647) && (getToken(3).kind != LPAREN)) {
          ;
        } else {
          break label_10;
        }
        jj_consume_token(DOT);
        jj_consume_token(IDENTIFIER);
                                                          l.add(token.image);
      }
      if (jj_2_8(2147483647)) {
        jj_consume_token(LT);
        Type();
        jj_consume_token(GT);
      } else {
        ;
      }
          jjtree.closeNodeScope(jjtn000, true);
          jjtc000 = false;
          jjtreeCloseNodeScope(jjtn000);
                jjtn000._data= l;
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void NameList() throws ParseException {
                   /*@bgen(jjtree) NameList */
  AstNameList jjtn000 = new AstNameList(JJTNAMELIST);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      Name();
      label_11:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case 173:
          ;
          break;
        default:
          jj_la1[32] = jj_gen;
          break label_11;
        }
        jj_consume_token(173);
        Name();
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

/*
* Expression syntax follows.
*/
  final public void Expression() throws ParseException {
    ConditionalExpression();
    if (jj_2_9(1) && (getToken(1).specialToken == null)) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case ASSIGN:
        jj_consume_token(ASSIGN);
                                   AstAssignExpression jjtn001 = new AstAssignExpression(JJTASSIGNEXPRESSION);
                                   boolean jjtc001 = true;
                                   jjtree.openNodeScope(jjtn001);
                                   jjtreeOpenNodeScope(jjtn001);
        try {
          Expression();
        } catch (Throwable jjte001) {
                                   if (jjtc001) {
                                     jjtree.clearNodeScope(jjtn001);
                                     jjtc001 = false;
                                   } else {
                                     jjtree.popNode();
                                   }
                                   if (jjte001 instanceof RuntimeException) {
                                     {if (true) throw (RuntimeException)jjte001;}
                                   }
                                   if (jjte001 instanceof ParseException) {
                                     {if (true) throw (ParseException)jjte001;}
                                   }
                                   {if (true) throw (Error)jjte001;}
        } finally {
                                   if (jjtc001) {
                                     jjtree.closeNodeScope(jjtn001,  2);
                                     jjtreeCloseNodeScope(jjtn001);
                                   }
        }
        break;
      case STARASSIGN:
        jj_consume_token(STARASSIGN);
                                       AstMultiplyAssignExpression jjtn002 = new AstMultiplyAssignExpression(JJTMULTIPLYASSIGNEXPRESSION);
                                       boolean jjtc002 = true;
                                       jjtree.openNodeScope(jjtn002);
                                       jjtreeOpenNodeScope(jjtn002);
        try {
          Expression();
        } catch (Throwable jjte002) {
                                       if (jjtc002) {
                                         jjtree.clearNodeScope(jjtn002);
                                         jjtc002 = false;
                                       } else {
                                         jjtree.popNode();
                                       }
                                       if (jjte002 instanceof RuntimeException) {
                                         {if (true) throw (RuntimeException)jjte002;}
                                       }
                                       if (jjte002 instanceof ParseException) {
                                         {if (true) throw (ParseException)jjte002;}
                                       }
                                       {if (true) throw (Error)jjte002;}
        } finally {
                                       if (jjtc002) {
                                         jjtree.closeNodeScope(jjtn002,  2);
                                         jjtreeCloseNodeScope(jjtn002);
                                       }
        }
        break;
      case SLASHASSIGN:
        jj_consume_token(SLASHASSIGN);
                                        AstDivideAssignExpression jjtn003 = new AstDivideAssignExpression(JJTDIVIDEASSIGNEXPRESSION);
                                        boolean jjtc003 = true;
                                        jjtree.openNodeScope(jjtn003);
                                        jjtreeOpenNodeScope(jjtn003);
        try {
          Expression();
        } catch (Throwable jjte003) {
                                        if (jjtc003) {
                                          jjtree.clearNodeScope(jjtn003);
                                          jjtc003 = false;
                                        } else {
                                          jjtree.popNode();
                                        }
                                        if (jjte003 instanceof RuntimeException) {
                                          {if (true) throw (RuntimeException)jjte003;}
                                        }
                                        if (jjte003 instanceof ParseException) {
                                          {if (true) throw (ParseException)jjte003;}
                                        }
                                        {if (true) throw (Error)jjte003;}
        } finally {
                                        if (jjtc003) {
                                          jjtree.closeNodeScope(jjtn003,  2);
                                          jjtreeCloseNodeScope(jjtn003);
                                        }
        }
        break;
      case REMASSIGN:
        jj_consume_token(REMASSIGN);
                                      AstRemAssignExpression jjtn004 = new AstRemAssignExpression(JJTREMASSIGNEXPRESSION);
                                      boolean jjtc004 = true;
                                      jjtree.openNodeScope(jjtn004);
                                      jjtreeOpenNodeScope(jjtn004);
        try {
          Expression();
        } catch (Throwable jjte004) {
                                      if (jjtc004) {
                                        jjtree.clearNodeScope(jjtn004);
                                        jjtc004 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte004 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte004;}
                                      }
                                      if (jjte004 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte004;}
                                      }
                                      {if (true) throw (Error)jjte004;}
        } finally {
                                      if (jjtc004) {
                                        jjtree.closeNodeScope(jjtn004,  2);
                                        jjtreeCloseNodeScope(jjtn004);
                                      }
        }
        break;
      case PLUSASSIGN:
        jj_consume_token(PLUSASSIGN);
                                       AstPlusAssignExpression jjtn005 = new AstPlusAssignExpression(JJTPLUSASSIGNEXPRESSION);
                                       boolean jjtc005 = true;
                                       jjtree.openNodeScope(jjtn005);
                                       jjtreeOpenNodeScope(jjtn005);
        try {
          Expression();
        } catch (Throwable jjte005) {
                                       if (jjtc005) {
                                         jjtree.clearNodeScope(jjtn005);
                                         jjtc005 = false;
                                       } else {
                                         jjtree.popNode();
                                       }
                                       if (jjte005 instanceof RuntimeException) {
                                         {if (true) throw (RuntimeException)jjte005;}
                                       }
                                       if (jjte005 instanceof ParseException) {
                                         {if (true) throw (ParseException)jjte005;}
                                       }
                                       {if (true) throw (Error)jjte005;}
        } finally {
                                       if (jjtc005) {
                                         jjtree.closeNodeScope(jjtn005,  2);
                                         jjtreeCloseNodeScope(jjtn005);
                                       }
        }
        break;
      case MINUSASSIGN:
        jj_consume_token(MINUSASSIGN);
                                        AstMinusAssignExpression jjtn006 = new AstMinusAssignExpression(JJTMINUSASSIGNEXPRESSION);
                                        boolean jjtc006 = true;
                                        jjtree.openNodeScope(jjtn006);
                                        jjtreeOpenNodeScope(jjtn006);
        try {
          Expression();
        } catch (Throwable jjte006) {
                                        if (jjtc006) {
                                          jjtree.clearNodeScope(jjtn006);
                                          jjtc006 = false;
                                        } else {
                                          jjtree.popNode();
                                        }
                                        if (jjte006 instanceof RuntimeException) {
                                          {if (true) throw (RuntimeException)jjte006;}
                                        }
                                        if (jjte006 instanceof ParseException) {
                                          {if (true) throw (ParseException)jjte006;}
                                        }
                                        {if (true) throw (Error)jjte006;}
        } finally {
                                        if (jjtc006) {
                                          jjtree.closeNodeScope(jjtn006,  2);
                                          jjtreeCloseNodeScope(jjtn006);
                                        }
        }
        break;
      case LSHIFTASSIGN:
        jj_consume_token(LSHIFTASSIGN);
                                         AstLShiftAssignExpression jjtn007 = new AstLShiftAssignExpression(JJTLSHIFTASSIGNEXPRESSION);
                                         boolean jjtc007 = true;
                                         jjtree.openNodeScope(jjtn007);
                                         jjtreeOpenNodeScope(jjtn007);
        try {
          Expression();
        } catch (Throwable jjte007) {
                                         if (jjtc007) {
                                           jjtree.clearNodeScope(jjtn007);
                                           jjtc007 = false;
                                         } else {
                                           jjtree.popNode();
                                         }
                                         if (jjte007 instanceof RuntimeException) {
                                           {if (true) throw (RuntimeException)jjte007;}
                                         }
                                         if (jjte007 instanceof ParseException) {
                                           {if (true) throw (ParseException)jjte007;}
                                         }
                                         {if (true) throw (Error)jjte007;}
        } finally {
                                         if (jjtc007) {
                                           jjtree.closeNodeScope(jjtn007,  2);
                                           jjtreeCloseNodeScope(jjtn007);
                                         }
        }
        break;
      case RSIGNEDSHIFTASSIGN:
        jj_consume_token(RSIGNEDSHIFTASSIGN);
                                               AstRSignedShiftAssignExpression jjtn008 = new AstRSignedShiftAssignExpression(JJTRSIGNEDSHIFTASSIGNEXPRESSION);
                                               boolean jjtc008 = true;
                                               jjtree.openNodeScope(jjtn008);
                                               jjtreeOpenNodeScope(jjtn008);
        try {
          Expression();
        } catch (Throwable jjte008) {
                                               if (jjtc008) {
                                                 jjtree.clearNodeScope(jjtn008);
                                                 jjtc008 = false;
                                               } else {
                                                 jjtree.popNode();
                                               }
                                               if (jjte008 instanceof RuntimeException) {
                                                 {if (true) throw (RuntimeException)jjte008;}
                                               }
                                               if (jjte008 instanceof ParseException) {
                                                 {if (true) throw (ParseException)jjte008;}
                                               }
                                               {if (true) throw (Error)jjte008;}
        } finally {
                                               if (jjtc008) {
                                                 jjtree.closeNodeScope(jjtn008,  2);
                                                 jjtreeCloseNodeScope(jjtn008);
                                               }
        }
        break;
      case RUNSIGNEDSHIFTASSIGN:
        jj_consume_token(RUNSIGNEDSHIFTASSIGN);
                                                 AstRUnsignedShiftAssignExpression jjtn009 = new AstRUnsignedShiftAssignExpression(JJTRUNSIGNEDSHIFTASSIGNEXPRESSION);
                                                 boolean jjtc009 = true;
                                                 jjtree.openNodeScope(jjtn009);
                                                 jjtreeOpenNodeScope(jjtn009);
        try {
          Expression();
        } catch (Throwable jjte009) {
                                                 if (jjtc009) {
                                                   jjtree.clearNodeScope(jjtn009);
                                                   jjtc009 = false;
                                                 } else {
                                                   jjtree.popNode();
                                                 }
                                                 if (jjte009 instanceof RuntimeException) {
                                                   {if (true) throw (RuntimeException)jjte009;}
                                                 }
                                                 if (jjte009 instanceof ParseException) {
                                                   {if (true) throw (ParseException)jjte009;}
                                                 }
                                                 {if (true) throw (Error)jjte009;}
        } finally {
                                                 if (jjtc009) {
                                                   jjtree.closeNodeScope(jjtn009,  2);
                                                   jjtreeCloseNodeScope(jjtn009);
                                                 }
        }
        break;
      case ANDASSIGN:
        jj_consume_token(ANDASSIGN);
                                      AstBitwiseAndAssignExpression jjtn010 = new AstBitwiseAndAssignExpression(JJTBITWISEANDASSIGNEXPRESSION);
                                      boolean jjtc010 = true;
                                      jjtree.openNodeScope(jjtn010);
                                      jjtreeOpenNodeScope(jjtn010);
        try {
          Expression();
        } catch (Throwable jjte010) {
                                      if (jjtc010) {
                                        jjtree.clearNodeScope(jjtn010);
                                        jjtc010 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte010 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte010;}
                                      }
                                      if (jjte010 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte010;}
                                      }
                                      {if (true) throw (Error)jjte010;}
        } finally {
                                      if (jjtc010) {
                                        jjtree.closeNodeScope(jjtn010,  2);
                                        jjtreeCloseNodeScope(jjtn010);
                                      }
        }
        break;
      case XORASSIGN:
        jj_consume_token(XORASSIGN);
                                      AstBitwiseXOrAssignExpression jjtn011 = new AstBitwiseXOrAssignExpression(JJTBITWISEXORASSIGNEXPRESSION);
                                      boolean jjtc011 = true;
                                      jjtree.openNodeScope(jjtn011);
                                      jjtreeOpenNodeScope(jjtn011);
        try {
          Expression();
        } catch (Throwable jjte011) {
                                      if (jjtc011) {
                                        jjtree.clearNodeScope(jjtn011);
                                        jjtc011 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte011 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte011;}
                                      }
                                      if (jjte011 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte011;}
                                      }
                                      {if (true) throw (Error)jjte011;}
        } finally {
                                      if (jjtc011) {
                                        jjtree.closeNodeScope(jjtn011,  2);
                                        jjtreeCloseNodeScope(jjtn011);
                                      }
        }
        break;
      case ORASSIGN:
        jj_consume_token(ORASSIGN);
                                     AstBitwiseOrAssignExpression jjtn012 = new AstBitwiseOrAssignExpression(JJTBITWISEORASSIGNEXPRESSION);
                                     boolean jjtc012 = true;
                                     jjtree.openNodeScope(jjtn012);
                                     jjtreeOpenNodeScope(jjtn012);
        try {
          Expression();
        } catch (Throwable jjte012) {
                                     if (jjtc012) {
                                       jjtree.clearNodeScope(jjtn012);
                                       jjtc012 = false;
                                     } else {
                                       jjtree.popNode();
                                     }
                                     if (jjte012 instanceof RuntimeException) {
                                       {if (true) throw (RuntimeException)jjte012;}
                                     }
                                     if (jjte012 instanceof ParseException) {
                                       {if (true) throw (ParseException)jjte012;}
                                     }
                                     {if (true) throw (Error)jjte012;}
        } finally {
                                     if (jjtc012) {
                                       jjtree.closeNodeScope(jjtn012,  2);
                                       jjtreeCloseNodeScope(jjtn012);
                                     }
        }
        break;
      default:
        jj_la1[33] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    } else {
      ;
    }
  }

  final public void ConditionalExpression() throws ParseException {
    ConditionalOrExpression();
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case HOOK:
      jj_consume_token(HOOK);
      Expression();
      jj_consume_token(COLON);
                                                                          AstHookExpression jjtn001 = new AstHookExpression(JJTHOOKEXPRESSION);
                                                                          boolean jjtc001 = true;
                                                                          jjtree.openNodeScope(jjtn001);
                                                                          jjtreeOpenNodeScope(jjtn001);
      try {
        ConditionalExpression();
      } catch (Throwable jjte001) {
                                                                          if (jjtc001) {
                                                                            jjtree.clearNodeScope(jjtn001);
                                                                            jjtc001 = false;
                                                                          } else {
                                                                            jjtree.popNode();
                                                                          }
                                                                          if (jjte001 instanceof RuntimeException) {
                                                                            {if (true) throw (RuntimeException)jjte001;}
                                                                          }
                                                                          if (jjte001 instanceof ParseException) {
                                                                            {if (true) throw (ParseException)jjte001;}
                                                                          }
                                                                          {if (true) throw (Error)jjte001;}
      } finally {
                                                                          if (jjtc001) {
                                                                            jjtree.closeNodeScope(jjtn001,  3);
                                                                            jjtreeCloseNodeScope(jjtn001);
                                                                          }
      }
      break;
    default:
      jj_la1[34] = jj_gen;
      ;
    }
  }

  final public void ConditionalOrExpression() throws ParseException {
    ConditionalAndExpression();
    label_12:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_OR:
      case SC_OR:
        ;
        break;
      default:
        jj_la1[35] = jj_gen;
        break label_12;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case SC_OR:
        jj_consume_token(SC_OR);
        break;
      case JSP_OR:
        jj_consume_token(JSP_OR);
        break;
      default:
        jj_la1[36] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
                                  AstConditionalOrExpression jjtn001 = new AstConditionalOrExpression(JJTCONDITIONALOREXPRESSION);
                                  boolean jjtc001 = true;
                                  jjtree.openNodeScope(jjtn001);
                                  jjtreeOpenNodeScope(jjtn001);
      try {
        ConditionalAndExpression();
      } catch (Throwable jjte001) {
                                  if (jjtc001) {
                                    jjtree.clearNodeScope(jjtn001);
                                    jjtc001 = false;
                                  } else {
                                    jjtree.popNode();
                                  }
                                  if (jjte001 instanceof RuntimeException) {
                                    {if (true) throw (RuntimeException)jjte001;}
                                  }
                                  if (jjte001 instanceof ParseException) {
                                    {if (true) throw (ParseException)jjte001;}
                                  }
                                  {if (true) throw (Error)jjte001;}
      } finally {
                                  if (jjtc001) {
                                    jjtree.closeNodeScope(jjtn001,  2);
                                    jjtreeCloseNodeScope(jjtn001);
                                  }
      }
    }
  }

  final public void ConditionalAndExpression() throws ParseException {
    BitwiseOrExpression();
    label_13:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_AND:
      case SC_AND:
        ;
        break;
      default:
        jj_la1[37] = jj_gen;
        break label_13;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case SC_AND:
        jj_consume_token(SC_AND);
        break;
      case JSP_AND:
        jj_consume_token(JSP_AND);
        break;
      default:
        jj_la1[38] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
                                                       AstConditionalAndExpression jjtn001 = new AstConditionalAndExpression(JJTCONDITIONALANDEXPRESSION);
                                                       boolean jjtc001 = true;
                                                       jjtree.openNodeScope(jjtn001);
                                                       jjtreeOpenNodeScope(jjtn001);
      try {
        BitwiseOrExpression();
      } catch (Throwable jjte001) {
                                                       if (jjtc001) {
                                                         jjtree.clearNodeScope(jjtn001);
                                                         jjtc001 = false;
                                                       } else {
                                                         jjtree.popNode();
                                                       }
                                                       if (jjte001 instanceof RuntimeException) {
                                                         {if (true) throw (RuntimeException)jjte001;}
                                                       }
                                                       if (jjte001 instanceof ParseException) {
                                                         {if (true) throw (ParseException)jjte001;}
                                                       }
                                                       {if (true) throw (Error)jjte001;}
      } finally {
                                                       if (jjtc001) {
                                                         jjtree.closeNodeScope(jjtn001,  2);
                                                         jjtreeCloseNodeScope(jjtn001);
                                                       }
      }
    }
  }

  final public void BitwiseOrExpression() throws ParseException {
    BitwiseXOrExpression();
    label_14:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BIT_OR:
        ;
        break;
      default:
        jj_la1[39] = jj_gen;
        break label_14;
      }
      jj_consume_token(BIT_OR);
                                            AstBitwiseOrExpression jjtn001 = new AstBitwiseOrExpression(JJTBITWISEOREXPRESSION);
                                            boolean jjtc001 = true;
                                            jjtree.openNodeScope(jjtn001);
                                            jjtreeOpenNodeScope(jjtn001);
      try {
        BitwiseXOrExpression();
      } catch (Throwable jjte001) {
                                            if (jjtc001) {
                                              jjtree.clearNodeScope(jjtn001);
                                              jjtc001 = false;
                                            } else {
                                              jjtree.popNode();
                                            }
                                            if (jjte001 instanceof RuntimeException) {
                                              {if (true) throw (RuntimeException)jjte001;}
                                            }
                                            if (jjte001 instanceof ParseException) {
                                              {if (true) throw (ParseException)jjte001;}
                                            }
                                            {if (true) throw (Error)jjte001;}
      } finally {
                                            if (jjtc001) {
                                              jjtree.closeNodeScope(jjtn001,  2);
                                              jjtreeCloseNodeScope(jjtn001);
                                            }
      }
    }
  }

  final public void BitwiseXOrExpression() throws ParseException {
    BitwiseAndExpression();
    label_15:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case XOR:
        ;
        break;
      default:
        jj_la1[40] = jj_gen;
        break label_15;
      }
      jj_consume_token(XOR);
                                         AstBitwiseXOrExpression jjtn001 = new AstBitwiseXOrExpression(JJTBITWISEXOREXPRESSION);
                                         boolean jjtc001 = true;
                                         jjtree.openNodeScope(jjtn001);
                                         jjtreeOpenNodeScope(jjtn001);
      try {
        BitwiseAndExpression();
      } catch (Throwable jjte001) {
                                         if (jjtc001) {
                                           jjtree.clearNodeScope(jjtn001);
                                           jjtc001 = false;
                                         } else {
                                           jjtree.popNode();
                                         }
                                         if (jjte001 instanceof RuntimeException) {
                                           {if (true) throw (RuntimeException)jjte001;}
                                         }
                                         if (jjte001 instanceof ParseException) {
                                           {if (true) throw (ParseException)jjte001;}
                                         }
                                         {if (true) throw (Error)jjte001;}
      } finally {
                                         if (jjtc001) {
                                           jjtree.closeNodeScope(jjtn001,  2);
                                           jjtreeCloseNodeScope(jjtn001);
                                         }
      }
    }
  }

  final public void BitwiseAndExpression() throws ParseException {
    EqualityExpression();
    label_16:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BIT_AND:
        ;
        break;
      default:
        jj_la1[41] = jj_gen;
        break label_16;
      }
      jj_consume_token(BIT_AND);
                                           AstBitwiseAndExpression jjtn001 = new AstBitwiseAndExpression(JJTBITWISEANDEXPRESSION);
                                           boolean jjtc001 = true;
                                           jjtree.openNodeScope(jjtn001);
                                           jjtreeOpenNodeScope(jjtn001);
      try {
        EqualityExpression();
      } catch (Throwable jjte001) {
                                           if (jjtc001) {
                                             jjtree.clearNodeScope(jjtn001);
                                             jjtc001 = false;
                                           } else {
                                             jjtree.popNode();
                                           }
                                           if (jjte001 instanceof RuntimeException) {
                                             {if (true) throw (RuntimeException)jjte001;}
                                           }
                                           if (jjte001 instanceof ParseException) {
                                             {if (true) throw (ParseException)jjte001;}
                                           }
                                           {if (true) throw (Error)jjte001;}
      } finally {
                                           if (jjtc001) {
                                             jjtree.closeNodeScope(jjtn001,  2);
                                             jjtreeCloseNodeScope(jjtn001);
                                           }
      }
    }
  }

  final public void EqualityExpression() throws ParseException {
    InstanceOfExpression();
    label_17:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_EQ:
      case JSP_NE:
      case EQ:
      case NE:
        ;
        break;
      default:
        jj_la1[42] = jj_gen;
        break label_17;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_EQ:
      case EQ:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case EQ:
          jj_consume_token(EQ);
          break;
        case JSP_EQ:
          jj_consume_token(JSP_EQ);
          break;
        default:
          jj_la1[43] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstEQExpression jjtn001 = new AstEQExpression(JJTEQEXPRESSION);
                                    boolean jjtc001 = true;
                                    jjtree.openNodeScope(jjtn001);
                                    jjtreeOpenNodeScope(jjtn001);
        try {
          InstanceOfExpression();
        } catch (Throwable jjte001) {
                                    if (jjtc001) {
                                      jjtree.clearNodeScope(jjtn001);
                                      jjtc001 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte001 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte001;}
                                    }
                                    if (jjte001 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte001;}
                                    }
                                    {if (true) throw (Error)jjte001;}
        } finally {
                                    if (jjtc001) {
                                      jjtree.closeNodeScope(jjtn001,  2);
                                      jjtreeCloseNodeScope(jjtn001);
                                    }
        }
        break;
      case JSP_NE:
      case NE:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case NE:
          jj_consume_token(NE);
          break;
        case JSP_NE:
          jj_consume_token(JSP_NE);
          break;
        default:
          jj_la1[44] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstNEExpression jjtn002 = new AstNEExpression(JJTNEEXPRESSION);
                                    boolean jjtc002 = true;
                                    jjtree.openNodeScope(jjtn002);
                                    jjtreeOpenNodeScope(jjtn002);
        try {
          InstanceOfExpression();
        } catch (Throwable jjte002) {
                                    if (jjtc002) {
                                      jjtree.clearNodeScope(jjtn002);
                                      jjtc002 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte002 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte002;}
                                    }
                                    if (jjte002 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte002;}
                                    }
                                    {if (true) throw (Error)jjte002;}
        } finally {
                                    if (jjtc002) {
                                      jjtree.closeNodeScope(jjtn002,  2);
                                      jjtreeCloseNodeScope(jjtn002);
                                    }
        }
        break;
      default:
        jj_la1[45] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void InstanceOfExpression() throws ParseException {
    RelationalExpression();
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case INSTANCEOF:
      jj_consume_token(INSTANCEOF);
                                                AstInstanceOfExpression jjtn001 = new AstInstanceOfExpression(JJTINSTANCEOFEXPRESSION);
                                                boolean jjtc001 = true;
                                                jjtree.openNodeScope(jjtn001);
                                                jjtreeOpenNodeScope(jjtn001);
      try {
        Type();
      } catch (Throwable jjte001) {
                                                if (jjtc001) {
                                                  jjtree.clearNodeScope(jjtn001);
                                                  jjtc001 = false;
                                                } else {
                                                  jjtree.popNode();
                                                }
                                                if (jjte001 instanceof RuntimeException) {
                                                  {if (true) throw (RuntimeException)jjte001;}
                                                }
                                                if (jjte001 instanceof ParseException) {
                                                  {if (true) throw (ParseException)jjte001;}
                                                }
                                                {if (true) throw (Error)jjte001;}
      } finally {
                                                if (jjtc001) {
                                                  jjtree.closeNodeScope(jjtn001,  2);
                                                  jjtreeCloseNodeScope(jjtn001);
                                                }
      }
      break;
    default:
      jj_la1[46] = jj_gen;
      ;
    }
  }

  final public void RelationalExpression() throws ParseException {
    ShiftExpression();
    label_18:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_GT:
      case JSP_LE:
      case JSP_LT:
      case JSP_GE:
      case GT:
      case LT:
      case LE:
      case GE:
        ;
        break;
      default:
        jj_la1[47] = jj_gen;
        break label_18;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_LT:
      case LT:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LT:
          jj_consume_token(LT);
          break;
        case JSP_LT:
          jj_consume_token(JSP_LT);
          break;
        default:
          jj_la1[48] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstLTExpression jjtn001 = new AstLTExpression(JJTLTEXPRESSION);
                                    boolean jjtc001 = true;
                                    jjtree.openNodeScope(jjtn001);
                                    jjtreeOpenNodeScope(jjtn001);
        try {
          ShiftExpression();
        } catch (Throwable jjte001) {
                                    if (jjtc001) {
                                      jjtree.clearNodeScope(jjtn001);
                                      jjtc001 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte001 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte001;}
                                    }
                                    if (jjte001 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte001;}
                                    }
                                    {if (true) throw (Error)jjte001;}
        } finally {
                                    if (jjtc001) {
                                      jjtree.closeNodeScope(jjtn001,  2);
                                      jjtreeCloseNodeScope(jjtn001);
                                    }
        }
        break;
      case JSP_GT:
      case GT:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case GT:
          jj_consume_token(GT);
          break;
        case JSP_GT:
          jj_consume_token(JSP_GT);
          break;
        default:
          jj_la1[49] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstGTExpression jjtn002 = new AstGTExpression(JJTGTEXPRESSION);
                                    boolean jjtc002 = true;
                                    jjtree.openNodeScope(jjtn002);
                                    jjtreeOpenNodeScope(jjtn002);
        try {
          ShiftExpression();
        } catch (Throwable jjte002) {
                                    if (jjtc002) {
                                      jjtree.clearNodeScope(jjtn002);
                                      jjtc002 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte002 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte002;}
                                    }
                                    if (jjte002 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte002;}
                                    }
                                    {if (true) throw (Error)jjte002;}
        } finally {
                                    if (jjtc002) {
                                      jjtree.closeNodeScope(jjtn002,  2);
                                      jjtreeCloseNodeScope(jjtn002);
                                    }
        }
        break;
      case JSP_LE:
      case LE:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LE:
          jj_consume_token(LE);
          break;
        case JSP_LE:
          jj_consume_token(JSP_LE);
          break;
        default:
          jj_la1[50] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstLEExpression jjtn003 = new AstLEExpression(JJTLEEXPRESSION);
                                    boolean jjtc003 = true;
                                    jjtree.openNodeScope(jjtn003);
                                    jjtreeOpenNodeScope(jjtn003);
        try {
          ShiftExpression();
        } catch (Throwable jjte003) {
                                    if (jjtc003) {
                                      jjtree.clearNodeScope(jjtn003);
                                      jjtc003 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte003 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte003;}
                                    }
                                    if (jjte003 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte003;}
                                    }
                                    {if (true) throw (Error)jjte003;}
        } finally {
                                    if (jjtc003) {
                                      jjtree.closeNodeScope(jjtn003,  2);
                                      jjtreeCloseNodeScope(jjtn003);
                                    }
        }
        break;
      case JSP_GE:
      case GE:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case GE:
          jj_consume_token(GE);
          break;
        case JSP_GE:
          jj_consume_token(JSP_GE);
          break;
        default:
          jj_la1[51] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                    AstGEExpression jjtn004 = new AstGEExpression(JJTGEEXPRESSION);
                                    boolean jjtc004 = true;
                                    jjtree.openNodeScope(jjtn004);
                                    jjtreeOpenNodeScope(jjtn004);
        try {
          ShiftExpression();
        } catch (Throwable jjte004) {
                                    if (jjtc004) {
                                      jjtree.clearNodeScope(jjtn004);
                                      jjtc004 = false;
                                    } else {
                                      jjtree.popNode();
                                    }
                                    if (jjte004 instanceof RuntimeException) {
                                      {if (true) throw (RuntimeException)jjte004;}
                                    }
                                    if (jjte004 instanceof ParseException) {
                                      {if (true) throw (ParseException)jjte004;}
                                    }
                                    {if (true) throw (Error)jjte004;}
        } finally {
                                    if (jjtc004) {
                                      jjtree.closeNodeScope(jjtn004,  2);
                                      jjtreeCloseNodeScope(jjtn004);
                                    }
        }
        break;
      default:
        jj_la1[52] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void ShiftExpression() throws ParseException {
    AdditiveExpression();
    label_19:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LSHIFT:
      case RSIGNEDSHIFT:
      case RUNSIGNEDSHIFT:
        ;
        break;
      default:
        jj_la1[53] = jj_gen;
        break label_19;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LSHIFT:
        jj_consume_token(LSHIFT);
                           AstLShiftExpression jjtn001 = new AstLShiftExpression(JJTLSHIFTEXPRESSION);
                           boolean jjtc001 = true;
                           jjtree.openNodeScope(jjtn001);
                           jjtreeOpenNodeScope(jjtn001);
        try {
          AdditiveExpression();
        } catch (Throwable jjte001) {
                           if (jjtc001) {
                             jjtree.clearNodeScope(jjtn001);
                             jjtc001 = false;
                           } else {
                             jjtree.popNode();
                           }
                           if (jjte001 instanceof RuntimeException) {
                             {if (true) throw (RuntimeException)jjte001;}
                           }
                           if (jjte001 instanceof ParseException) {
                             {if (true) throw (ParseException)jjte001;}
                           }
                           {if (true) throw (Error)jjte001;}
        } finally {
                           if (jjtc001) {
                             jjtree.closeNodeScope(jjtn001,  2);
                             jjtreeCloseNodeScope(jjtn001);
                           }
        }
        break;
      case RSIGNEDSHIFT:
        jj_consume_token(RSIGNEDSHIFT);
                                 AstRSignedShiftExpression jjtn002 = new AstRSignedShiftExpression(JJTRSIGNEDSHIFTEXPRESSION);
                                 boolean jjtc002 = true;
                                 jjtree.openNodeScope(jjtn002);
                                 jjtreeOpenNodeScope(jjtn002);
        try {
          AdditiveExpression();
        } catch (Throwable jjte002) {
                                 if (jjtc002) {
                                   jjtree.clearNodeScope(jjtn002);
                                   jjtc002 = false;
                                 } else {
                                   jjtree.popNode();
                                 }
                                 if (jjte002 instanceof RuntimeException) {
                                   {if (true) throw (RuntimeException)jjte002;}
                                 }
                                 if (jjte002 instanceof ParseException) {
                                   {if (true) throw (ParseException)jjte002;}
                                 }
                                 {if (true) throw (Error)jjte002;}
        } finally {
                                 if (jjtc002) {
                                   jjtree.closeNodeScope(jjtn002,  2);
                                   jjtreeCloseNodeScope(jjtn002);
                                 }
        }
        break;
      case RUNSIGNEDSHIFT:
        jj_consume_token(RUNSIGNEDSHIFT);
                                   AstRUnsignedShiftExpression jjtn003 = new AstRUnsignedShiftExpression(JJTRUNSIGNEDSHIFTEXPRESSION);
                                   boolean jjtc003 = true;
                                   jjtree.openNodeScope(jjtn003);
                                   jjtreeOpenNodeScope(jjtn003);
        try {
          AdditiveExpression();
        } catch (Throwable jjte003) {
                                   if (jjtc003) {
                                     jjtree.clearNodeScope(jjtn003);
                                     jjtc003 = false;
                                   } else {
                                     jjtree.popNode();
                                   }
                                   if (jjte003 instanceof RuntimeException) {
                                     {if (true) throw (RuntimeException)jjte003;}
                                   }
                                   if (jjte003 instanceof ParseException) {
                                     {if (true) throw (ParseException)jjte003;}
                                   }
                                   {if (true) throw (Error)jjte003;}
        } finally {
                                   if (jjtc003) {
                                     jjtree.closeNodeScope(jjtn003,  2);
                                     jjtreeCloseNodeScope(jjtn003);
                                   }
        }
        break;
      default:
        jj_la1[54] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void AdditiveExpression() throws ParseException {
    MultiplicativeExpression();
    label_20:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case PLUS:
      case MINUS:
        ;
        break;
      default:
        jj_la1[55] = jj_gen;
        break label_20;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case PLUS:
        jj_consume_token(PLUS);
                         AstPlusExpression jjtn001 = new AstPlusExpression(JJTPLUSEXPRESSION);
                         boolean jjtc001 = true;
                         jjtree.openNodeScope(jjtn001);
                         jjtreeOpenNodeScope(jjtn001);
        try {
          MultiplicativeExpression();
        } catch (Throwable jjte001) {
                         if (jjtc001) {
                           jjtree.clearNodeScope(jjtn001);
                           jjtc001 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte001 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte001;}
                         }
                         if (jjte001 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte001;}
                         }
                         {if (true) throw (Error)jjte001;}
        } finally {
                         if (jjtc001) {
                           jjtree.closeNodeScope(jjtn001,  2);
                           jjtreeCloseNodeScope(jjtn001);
                         }
        }
        break;
      case MINUS:
        jj_consume_token(MINUS);
                          AstMinusExpression jjtn002 = new AstMinusExpression(JJTMINUSEXPRESSION);
                          boolean jjtc002 = true;
                          jjtree.openNodeScope(jjtn002);
                          jjtreeOpenNodeScope(jjtn002);
        try {
          MultiplicativeExpression();
        } catch (Throwable jjte002) {
                          if (jjtc002) {
                            jjtree.clearNodeScope(jjtn002);
                            jjtc002 = false;
                          } else {
                            jjtree.popNode();
                          }
                          if (jjte002 instanceof RuntimeException) {
                            {if (true) throw (RuntimeException)jjte002;}
                          }
                          if (jjte002 instanceof ParseException) {
                            {if (true) throw (ParseException)jjte002;}
                          }
                          {if (true) throw (Error)jjte002;}
        } finally {
                          if (jjtc002) {
                            jjtree.closeNodeScope(jjtn002,  2);
                            jjtreeCloseNodeScope(jjtn002);
                          }
        }
        break;
      default:
        jj_la1[56] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void MultiplicativeExpression() throws ParseException {
    UnaryExpression();
    label_21:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case JSP_DIV:
      case JSP_MOD:
      case STAR:
      case SLASH:
      case REM:
        ;
        break;
      default:
        jj_la1[57] = jj_gen;
        break label_21;
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case STAR:
        jj_consume_token(STAR);
                         AstMultiplyExpression jjtn001 = new AstMultiplyExpression(JJTMULTIPLYEXPRESSION);
                         boolean jjtc001 = true;
                         jjtree.openNodeScope(jjtn001);
                         jjtreeOpenNodeScope(jjtn001);
        try {
          UnaryExpression();
        } catch (Throwable jjte001) {
                         if (jjtc001) {
                           jjtree.clearNodeScope(jjtn001);
                           jjtc001 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte001 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte001;}
                         }
                         if (jjte001 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte001;}
                         }
                         {if (true) throw (Error)jjte001;}
        } finally {
                         if (jjtc001) {
                           jjtree.closeNodeScope(jjtn001,  2);
                           jjtreeCloseNodeScope(jjtn001);
                         }
        }
        break;
      case JSP_DIV:
      case SLASH:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case SLASH:
          jj_consume_token(SLASH);
          break;
        case JSP_DIV:
          jj_consume_token(JSP_DIV);
          break;
        default:
          jj_la1[58] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                        AstDivideExpression jjtn002 = new AstDivideExpression(JJTDIVIDEEXPRESSION);
                                        boolean jjtc002 = true;
                                        jjtree.openNodeScope(jjtn002);
                                        jjtreeOpenNodeScope(jjtn002);
        try {
          UnaryExpression();
        } catch (Throwable jjte002) {
                                        if (jjtc002) {
                                          jjtree.clearNodeScope(jjtn002);
                                          jjtc002 = false;
                                        } else {
                                          jjtree.popNode();
                                        }
                                        if (jjte002 instanceof RuntimeException) {
                                          {if (true) throw (RuntimeException)jjte002;}
                                        }
                                        if (jjte002 instanceof ParseException) {
                                          {if (true) throw (ParseException)jjte002;}
                                        }
                                        {if (true) throw (Error)jjte002;}
        } finally {
                                        if (jjtc002) {
                                          jjtree.closeNodeScope(jjtn002,  2);
                                          jjtreeCloseNodeScope(jjtn002);
                                        }
        }
        break;
      case JSP_MOD:
      case REM:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case REM:
          jj_consume_token(REM);
          break;
        case JSP_MOD:
          jj_consume_token(JSP_MOD);
          break;
        default:
          jj_la1[59] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
                                      AstRemainderExpression jjtn003 = new AstRemainderExpression(JJTREMAINDEREXPRESSION);
                                      boolean jjtc003 = true;
                                      jjtree.openNodeScope(jjtn003);
                                      jjtreeOpenNodeScope(jjtn003);
        try {
          UnaryExpression();
        } catch (Throwable jjte003) {
                                      if (jjtc003) {
                                        jjtree.clearNodeScope(jjtn003);
                                        jjtc003 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte003 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte003;}
                                      }
                                      if (jjte003 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte003;}
                                      }
                                      {if (true) throw (Error)jjte003;}
        } finally {
                                      if (jjtc003) {
                                        jjtree.closeNodeScope(jjtn003,  2);
                                        jjtreeCloseNodeScope(jjtn003);
                                      }
        }
        break;
      default:
        jj_la1[60] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void UnaryExpression() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case PLUS:
      jj_consume_token(PLUS);
                         AstUnaryPlusExpression jjtn001 = new AstUnaryPlusExpression(JJTUNARYPLUSEXPRESSION);
                         boolean jjtc001 = true;
                         jjtree.openNodeScope(jjtn001);
                         jjtreeOpenNodeScope(jjtn001);
      try {
        UnaryExpression();
      } catch (Throwable jjte001) {
                         if (jjtc001) {
                           jjtree.clearNodeScope(jjtn001);
                           jjtc001 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte001 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte001;}
                         }
                         if (jjte001 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte001;}
                         }
                         {if (true) throw (Error)jjte001;}
      } finally {
                         if (jjtc001) {
                           jjtree.closeNodeScope(jjtn001,  true);
                           jjtreeCloseNodeScope(jjtn001);
                         }
      }
      break;
    case MINUS:
      jj_consume_token(MINUS);
                          AstUnaryMinusExpression jjtn002 = new AstUnaryMinusExpression(JJTUNARYMINUSEXPRESSION);
                          boolean jjtc002 = true;
                          jjtree.openNodeScope(jjtn002);
                          jjtreeOpenNodeScope(jjtn002);
      try {
        UnaryExpression();
      } catch (Throwable jjte002) {
                          if (jjtc002) {
                            jjtree.clearNodeScope(jjtn002);
                            jjtc002 = false;
                          } else {
                            jjtree.popNode();
                          }
                          if (jjte002 instanceof RuntimeException) {
                            {if (true) throw (RuntimeException)jjte002;}
                          }
                          if (jjte002 instanceof ParseException) {
                            {if (true) throw (ParseException)jjte002;}
                          }
                          {if (true) throw (Error)jjte002;}
      } finally {
                          if (jjtc002) {
                            jjtree.closeNodeScope(jjtn002,  true);
                            jjtreeCloseNodeScope(jjtn002);
                          }
      }
      break;
    case INCR:
      jj_consume_token(INCR);
                         AstPreIncrementExpression jjtn003 = new AstPreIncrementExpression(JJTPREINCREMENTEXPRESSION);
                         boolean jjtc003 = true;
                         jjtree.openNodeScope(jjtn003);
                         jjtreeOpenNodeScope(jjtn003);
      try {
        PrimaryExpression();
      } catch (Throwable jjte003) {
                         if (jjtc003) {
                           jjtree.clearNodeScope(jjtn003);
                           jjtc003 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte003 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte003;}
                         }
                         if (jjte003 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte003;}
                         }
                         {if (true) throw (Error)jjte003;}
      } finally {
                         if (jjtc003) {
                           jjtree.closeNodeScope(jjtn003,  true);
                           jjtreeCloseNodeScope(jjtn003);
                         }
      }
      break;
    case DECR:
      jj_consume_token(DECR);
                         AstPreDecrementExpression jjtn004 = new AstPreDecrementExpression(JJTPREDECREMENTEXPRESSION);
                         boolean jjtc004 = true;
                         jjtree.openNodeScope(jjtn004);
                         jjtreeOpenNodeScope(jjtn004);
      try {
        PrimaryExpression();
      } catch (Throwable jjte004) {
                         if (jjtc004) {
                           jjtree.clearNodeScope(jjtn004);
                           jjtc004 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte004 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte004;}
                         }
                         if (jjte004 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte004;}
                         }
                         {if (true) throw (Error)jjte004;}
      } finally {
                         if (jjtc004) {
                           jjtree.closeNodeScope(jjtn004,  true);
                           jjtreeCloseNodeScope(jjtn004);
                         }
      }
      break;
    case BOOLEAN:
    case BYTE:
    case CHAR:
    case DOUBLE:
    case FLOAT:
    case INT:
    case LONG:
    case NEW:
    case SHORT:
    case VOID:
    case VAR:
    case NULL:
    case TRUE:
    case FALSE:
    case JSP_EMPTY:
    case JSP_NOT:
    case INTEGER_LITERAL:
    case FLOATING_POINT_LITERAL:
    case CHARACTER_LITERAL:
    case STRING_LITERAL:
    case JSP_STRING_LITERAL:
    case IDENTIFIER:
    case LPAREN:
    case BANG:
    case TILDE:
      UnaryExpressionNotPlusMinus();
      break;
    default:
      jj_la1[61] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void UnaryExpressionNotPlusMinus() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case TILDE:
      jj_consume_token(TILDE);
                          AstBitwiseComplementExpression jjtn001 = new AstBitwiseComplementExpression(JJTBITWISECOMPLEMENTEXPRESSION);
                          boolean jjtc001 = true;
                          jjtree.openNodeScope(jjtn001);
                          jjtreeOpenNodeScope(jjtn001);
      try {
        UnaryExpression();
      } catch (Throwable jjte001) {
                          if (jjtc001) {
                            jjtree.clearNodeScope(jjtn001);
                            jjtc001 = false;
                          } else {
                            jjtree.popNode();
                          }
                          if (jjte001 instanceof RuntimeException) {
                            {if (true) throw (RuntimeException)jjte001;}
                          }
                          if (jjte001 instanceof ParseException) {
                            {if (true) throw (ParseException)jjte001;}
                          }
                          {if (true) throw (Error)jjte001;}
      } finally {
                          if (jjtc001) {
                            jjtree.closeNodeScope(jjtn001,  true);
                            jjtreeCloseNodeScope(jjtn001);
                          }
      }
      break;
    case JSP_NOT:
    case BANG:
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BANG:
        jj_consume_token(BANG);
        break;
      case JSP_NOT:
        jj_consume_token(JSP_NOT);
        break;
      default:
        jj_la1[62] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
                                       AstLogicalComplementExpression jjtn002 = new AstLogicalComplementExpression(JJTLOGICALCOMPLEMENTEXPRESSION);
                                       boolean jjtc002 = true;
                                       jjtree.openNodeScope(jjtn002);
                                       jjtreeOpenNodeScope(jjtn002);
      try {
        UnaryExpression();
      } catch (Throwable jjte002) {
                                       if (jjtc002) {
                                         jjtree.clearNodeScope(jjtn002);
                                         jjtc002 = false;
                                       } else {
                                         jjtree.popNode();
                                       }
                                       if (jjte002 instanceof RuntimeException) {
                                         {if (true) throw (RuntimeException)jjte002;}
                                       }
                                       if (jjte002 instanceof ParseException) {
                                         {if (true) throw (ParseException)jjte002;}
                                       }
                                       {if (true) throw (Error)jjte002;}
      } finally {
                                       if (jjtc002) {
                                         jjtree.closeNodeScope(jjtn002,  true);
                                         jjtreeCloseNodeScope(jjtn002);
                                       }
      }
      break;
    case JSP_EMPTY:
      jj_consume_token(JSP_EMPTY);
                              AstIsEmptyExpression jjtn003 = new AstIsEmptyExpression(JJTISEMPTYEXPRESSION);
                              boolean jjtc003 = true;
                              jjtree.openNodeScope(jjtn003);
                              jjtreeOpenNodeScope(jjtn003);
      try {
        UnaryExpression();
      } catch (Throwable jjte003) {
                              if (jjtc003) {
                                jjtree.clearNodeScope(jjtn003);
                                jjtc003 = false;
                              } else {
                                jjtree.popNode();
                              }
                              if (jjte003 instanceof RuntimeException) {
                                {if (true) throw (RuntimeException)jjte003;}
                              }
                              if (jjte003 instanceof ParseException) {
                                {if (true) throw (ParseException)jjte003;}
                              }
                              {if (true) throw (Error)jjte003;}
      } finally {
                              if (jjtc003) {
                                jjtree.closeNodeScope(jjtn003,  true);
                                jjtreeCloseNodeScope(jjtn003);
                              }
      }
      break;
    default:
      jj_la1[63] = jj_gen;
      if (jj_2_10(2147483647)) {
        CastExpression();
      } else {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case BOOLEAN:
        case BYTE:
        case CHAR:
        case DOUBLE:
        case FLOAT:
        case INT:
        case LONG:
        case NEW:
        case SHORT:
        case VOID:
        case VAR:
        case NULL:
        case TRUE:
        case FALSE:
        case INTEGER_LITERAL:
        case FLOATING_POINT_LITERAL:
        case CHARACTER_LITERAL:
        case STRING_LITERAL:
        case JSP_STRING_LITERAL:
        case IDENTIFIER:
        case LPAREN:
          PostfixExpression();
          break;
        default:
          jj_la1[64] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
      }
    }
  }

// This production is to determine lookahead only.  The LOOKAHEAD specifications
// below are not used, but they are there just to indicate that we know about
// this.
  final public void CastLookahead() throws ParseException {
    if (jj_2_11(2)) {
      jj_consume_token(LPAREN);
      PrimitiveType();
    } else if (jj_2_12(2147483647)) {
      jj_consume_token(LPAREN);
      Name();
      jj_consume_token(LBRACKET);
      jj_consume_token(RBRACKET);
    } else {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LPAREN:
        jj_consume_token(LPAREN);
        Name();
        jj_consume_token(RPAREN);
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case TILDE:
          jj_consume_token(TILDE);
          break;
        case BANG:
          jj_consume_token(BANG);
          break;
        case LPAREN:
          jj_consume_token(LPAREN);
          break;
        case IDENTIFIER:
          jj_consume_token(IDENTIFIER);
          break;
        case THIS:
          jj_consume_token(THIS);
          break;
        case SUPER:
          jj_consume_token(SUPER);
          break;
        case NEW:
          jj_consume_token(NEW);
          break;
        case NULL:
        case TRUE:
        case FALSE:
        case INTEGER_LITERAL:
        case FLOATING_POINT_LITERAL:
        case CHARACTER_LITERAL:
        case STRING_LITERAL:
        case JSP_STRING_LITERAL:
          Literal();
          break;
        default:
          jj_la1[65] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
        break;
      default:
        jj_la1[66] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void PostfixExpression() throws ParseException {
    PrimaryExpression();
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case INCR:
    case DECR:
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case INCR:
                                AstPostIncrementExpression jjtn001 = new AstPostIncrementExpression(JJTPOSTINCREMENTEXPRESSION);
                                boolean jjtc001 = true;
                                jjtree.openNodeScope(jjtn001);
                                jjtreeOpenNodeScope(jjtn001);
        try {
          jj_consume_token(INCR);
        } finally {
                                if (jjtc001) {
                                  jjtree.closeNodeScope(jjtn001,  1);
                                  jjtreeCloseNodeScope(jjtn001);
                                }
        }
        break;
      case DECR:
                                                                     AstPostDecrementExpression jjtn002 = new AstPostDecrementExpression(JJTPOSTDECREMENTEXPRESSION);
                                                                     boolean jjtc002 = true;
                                                                     jjtree.openNodeScope(jjtn002);
                                                                     jjtreeOpenNodeScope(jjtn002);
        try {
          jj_consume_token(DECR);
        } finally {
                                                                     if (jjtc002) {
                                                                       jjtree.closeNodeScope(jjtn002,  1);
                                                                       jjtreeCloseNodeScope(jjtn002);
                                                                     }
        }
        break;
      default:
        jj_la1[67] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
      break;
    default:
      jj_la1[68] = jj_gen;
      ;
    }
  }

  final public void CastExpression() throws ParseException {
                         /*@bgen(jjtree) CastExpression */
  AstCastExpression jjtn000 = new AstCastExpression(JJTCASTEXPRESSION);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      if (jj_2_13(2147483647)) {
        jj_consume_token(LPAREN);
        Type();
        jj_consume_token(RPAREN);
        UnaryExpression();
      } else {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LPAREN:
          jj_consume_token(LPAREN);
          Type();
          jj_consume_token(RPAREN);
          UnaryExpressionNotPlusMinus();
          break;
        default:
          jj_la1[69] = 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void PrimaryExpression() throws ParseException {
    PrimaryPrefix();
    label_22:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LBRACKET:
      case DOT:
        ;
        break;
      default:
        jj_la1[70] = jj_gen;
        break label_22;
      }
      if (jj_2_14(2)) {
        jj_consume_token(DOT);
        AllocationExpression();
      } else if (jj_2_15(2)) {
        jj_consume_token(LBRACKET);
        Expression();
                                          AstArrayReference jjtn001 = new AstArrayReference(JJTARRAYREFERENCE);
                                          boolean jjtc001 = true;
                                          jjtree.openNodeScope(jjtn001);
                                          jjtreeOpenNodeScope(jjtn001);
        try {
          jj_consume_token(RBRACKET);
        } finally {
                                          if (jjtc001) {
                                            jjtree.closeNodeScope(jjtn001,  2);
                                            jjtreeCloseNodeScope(jjtn001);
                                          }
        }
      } else if (jj_2_16(3)) {
        jj_consume_token(DOT);
                        AstMethodInvocation jjtn002 = new AstMethodInvocation(JJTMETHODINVOCATION);
                        boolean jjtc002 = true;
                        jjtree.openNodeScope(jjtn002);
                        jjtreeOpenNodeScope(jjtn002);
        try {
          MethodCall();
        } catch (Throwable jjte002) {
                        if (jjtc002) {
                          jjtree.clearNodeScope(jjtn002);
                          jjtc002 = false;
                        } else {
                          jjtree.popNode();
                        }
                        if (jjte002 instanceof RuntimeException) {
                          {if (true) throw (RuntimeException)jjte002;}
                        }
                        if (jjte002 instanceof ParseException) {
                          {if (true) throw (ParseException)jjte002;}
                        }
                        {if (true) throw (Error)jjte002;}
        } finally {
                        if (jjtc002) {
                          jjtree.closeNodeScope(jjtn002,  2);
                          jjtreeCloseNodeScope(jjtn002);
                        }
        }
      } else {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case DOT:
                  AstFieldReference jjtn003 = new AstFieldReference(JJTFIELDREFERENCE);
                  boolean jjtc003 = true;
                  jjtree.openNodeScope(jjtn003);
                  jjtreeOpenNodeScope(jjtn003);
          try {
            Field();
          } catch (Throwable jjte003) {
                  if (jjtc003) {
                    jjtree.clearNodeScope(jjtn003);
                    jjtc003 = false;
                  } else {
                    jjtree.popNode();
                  }
                  if (jjte003 instanceof RuntimeException) {
                    {if (true) throw (RuntimeException)jjte003;}
                  }
                  if (jjte003 instanceof ParseException) {
                    {if (true) throw (ParseException)jjte003;}
                  }
                  {if (true) throw (Error)jjte003;}
          } finally {
                  if (jjtc003) {
                    jjtree.closeNodeScope(jjtn003,  2);
                    jjtreeCloseNodeScope(jjtn003);
                  }
          }
          break;
        default:
          jj_la1[71] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
      }
    }
  }

  final public void PrimaryPrefix() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case NULL:
    case TRUE:
    case FALSE:
    case INTEGER_LITERAL:
    case FLOATING_POINT_LITERAL:
    case CHARACTER_LITERAL:
    case STRING_LITERAL:
    case JSP_STRING_LITERAL:
      Literal();
      break;
    case LPAREN:
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      break;
    case NEW:
      AllocationExpression();
      break;
    default:
      jj_la1[72] = jj_gen;
      if (jj_2_17(2147483647)) {
        ResultType();
        jj_consume_token(DOT);
        jj_consume_token(CLASS);
      } else if (jj_2_18(2)) {
        MethodCall();
      } else if (jj_2_19(3)) {
        Name();
      } else {
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void MethodCall() throws ParseException {
                     /*@bgen(jjtree) MethodCall */
  AstMethodCall jjtn000 = new AstMethodCall(JJTMETHODCALL);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IDENTIFIER);
                                                          jjtn000._data= token.image;
      Arguments();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Field() throws ParseException {
                /*@bgen(jjtree) Field */
  AstField jjtn000 = new AstField(JJTFIELD);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(DOT);
      jj_consume_token(IDENTIFIER);
          jjtree.closeNodeScope(jjtn000, true);
          jjtc000 = false;
          jjtreeCloseNodeScope(jjtn000);
                jjtn000._data= token.image;
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Literal() throws ParseException {
                  /*@bgen(jjtree) Literal */
  AstLiteral jjtn000 = new AstLiteral(JJTLITERAL);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case INTEGER_LITERAL:
        jj_consume_token(INTEGER_LITERAL);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Integer.valueOf(token.image);
        break;
      case FLOATING_POINT_LITERAL:
        jj_consume_token(FLOATING_POINT_LITERAL);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Float.valueOf(token.image);
        break;
      case CHARACTER_LITERAL:
        jj_consume_token(CHARACTER_LITERAL);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= new Character(token.image.charAt(1));
        break;
      case STRING_LITERAL:
        jj_consume_token(STRING_LITERAL);
                  jjtree.closeNodeScope(jjtn000, true);
                  jjtc000 = false;
                  jjtreeCloseNodeScope(jjtn000);
                                                String str = token.image;
                                                jjtn000._data = str;
        break;
      case JSP_STRING_LITERAL:
        jj_consume_token(JSP_STRING_LITERAL);
                  jjtree.closeNodeScope(jjtn000, true);
                  jjtc000 = false;
                  jjtreeCloseNodeScope(jjtn000);
                                                String str2 = token.image;
                                                jjtn000._data = str2;
        break;
      case TRUE:
        jj_consume_token(TRUE);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Boolean.TRUE;
        break;
      case FALSE:
        jj_consume_token(FALSE);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= Boolean.FALSE;
        break;
      case NULL:
        jj_consume_token(NULL);
                                                          jjtree.closeNodeScope(jjtn000, true);
                                                          jjtc000 = false;
                                                          jjtreeCloseNodeScope(jjtn000);
                                                          jjtn000._data= null;
        break;
      default:
        jj_la1[73] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Arguments() throws ParseException {
                    /*@bgen(jjtree) Arguments */
  AstArguments jjtn000 = new AstArguments(JJTARGUMENTS);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(LPAREN);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case JSP_EMPTY:
      case JSP_NOT:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case BANG:
      case TILDE:
      case INCR:
      case DECR:
      case PLUS:
      case MINUS:
        if (jj_2_21(2)) {
          NamedArgument();
        } else {
          switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
          case BOOLEAN:
          case BYTE:
          case CHAR:
          case DOUBLE:
          case FLOAT:
          case INT:
          case LONG:
          case NEW:
          case SHORT:
          case VOID:
          case VAR:
          case NULL:
          case TRUE:
          case FALSE:
          case JSP_EMPTY:
          case JSP_NOT:
          case INTEGER_LITERAL:
          case FLOATING_POINT_LITERAL:
          case CHARACTER_LITERAL:
          case STRING_LITERAL:
          case JSP_STRING_LITERAL:
          case IDENTIFIER:
          case LPAREN:
          case BANG:
          case TILDE:
          case INCR:
          case DECR:
          case PLUS:
          case MINUS:
            Argument();
            label_23:
            while (true) {
              switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
              case COMMA:
                ;
                break;
              default:
                jj_la1[74] = jj_gen;
                break label_23;
              }
              jj_consume_token(COMMA);
              if (jj_2_20(2)) {
                NamedArguments();
              } else {
                switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
                case BOOLEAN:
                case BYTE:
                case CHAR:
                case DOUBLE:
                case FLOAT:
                case INT:
                case LONG:
                case NEW:
                case SHORT:
                case VOID:
                case VAR:
                case NULL:
                case TRUE:
                case FALSE:
                case JSP_EMPTY:
                case JSP_NOT:
                case INTEGER_LITERAL:
                case FLOATING_POINT_LITERAL:
                case CHARACTER_LITERAL:
                case STRING_LITERAL:
                case JSP_STRING_LITERAL:
                case IDENTIFIER:
                case LPAREN:
                case BANG:
                case TILDE:
                case INCR:
                case DECR:
                case PLUS:
                case MINUS:
                  Argument();
                  break;
                default:
                  jj_la1[75] = jj_gen;
                  jj_consume_token(-1);
                  throw new ParseException();
                }
              }
            }
            break;
          default:
            jj_la1[76] = jj_gen;
            jj_consume_token(-1);
            throw new ParseException();
          }
        }
        break;
      default:
        jj_la1[77] = jj_gen;
        ;
      }
      jj_consume_token(RPAREN);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Argument() throws ParseException {
    if (jj_2_22(2)) {
      NamedArgument();
    } else {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case JSP_EMPTY:
      case JSP_NOT:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case BANG:
      case TILDE:
      case INCR:
      case DECR:
      case PLUS:
      case MINUS:
        Expression();
        break;
      default:
        jj_la1[78] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void NamedArguments() throws ParseException {
    NamedArgument();
    label_24:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case COMMA:
        ;
        break;
      default:
        jj_la1[79] = jj_gen;
        break label_24;
      }
      jj_consume_token(COMMA);
      NamedArgument();
    }
  }

  final public void NamedArgument() throws ParseException {
                        /*@bgen(jjtree) NamedArgument */
  AstNamedArgument jjtn000 = new AstNamedArgument(JJTNAMEDARGUMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IDENTIFIER);
                       jjtn000._data = token.image;
      jj_consume_token(COLON);
      Expression();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void AllocationExpression() throws ParseException {
    if (jj_2_23(2)) {
      jj_consume_token(NEW);
      PrimitiveType();
                                AstArrayAllocationExpression jjtn001 = new AstArrayAllocationExpression(JJTARRAYALLOCATIONEXPRESSION);
                                boolean jjtc001 = true;
                                jjtree.openNodeScope(jjtn001);
                                jjtreeOpenNodeScope(jjtn001);
      try {
        ArrayDimsAndInits();
      } catch (Throwable jjte001) {
                                if (jjtc001) {
                                  jjtree.clearNodeScope(jjtn001);
                                  jjtc001 = false;
                                } else {
                                  jjtree.popNode();
                                }
                                if (jjte001 instanceof RuntimeException) {
                                  {if (true) throw (RuntimeException)jjte001;}
                                }
                                if (jjte001 instanceof ParseException) {
                                  {if (true) throw (ParseException)jjte001;}
                                }
                                {if (true) throw (Error)jjte001;}
      } finally {
                                if (jjtc001) {
                                  jjtree.closeNodeScope(jjtn001,  true);
                                  jjtreeCloseNodeScope(jjtn001);
                                }
      }
    } else {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case NEW:
        jj_consume_token(NEW);
        Name();
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case LBRACKET:
                  AstArrayAllocationExpression jjtn002 = new AstArrayAllocationExpression(JJTARRAYALLOCATIONEXPRESSION);
                  boolean jjtc002 = true;
                  jjtree.openNodeScope(jjtn002);
                  jjtreeOpenNodeScope(jjtn002);
          try {
            ArrayDimsAndInits();
          } catch (Throwable jjte002) {
                  if (jjtc002) {
                    jjtree.clearNodeScope(jjtn002);
                    jjtc002 = false;
                  } else {
                    jjtree.popNode();
                  }
                  if (jjte002 instanceof RuntimeException) {
                    {if (true) throw (RuntimeException)jjte002;}
                  }
                  if (jjte002 instanceof ParseException) {
                    {if (true) throw (ParseException)jjte002;}
                  }
                  {if (true) throw (Error)jjte002;}
          } finally {
                  if (jjtc002) {
                    jjtree.closeNodeScope(jjtn002,  2);
                    jjtreeCloseNodeScope(jjtn002);
                  }
          }
          break;
        case LPAREN:
                  AstObjectAllocationExpression jjtn003 = new AstObjectAllocationExpression(JJTOBJECTALLOCATIONEXPRESSION);
                  boolean jjtc003 = true;
                  jjtree.openNodeScope(jjtn003);
                  jjtreeOpenNodeScope(jjtn003);
          try {
            Arguments();
          } catch (Throwable jjte003) {
                  if (jjtc003) {
                    jjtree.clearNodeScope(jjtn003);
                    jjtc003 = false;
                  } else {
                    jjtree.popNode();
                  }
                  if (jjte003 instanceof RuntimeException) {
                    {if (true) throw (RuntimeException)jjte003;}
                  }
                  if (jjte003 instanceof ParseException) {
                    {if (true) throw (ParseException)jjte003;}
                  }
                  {if (true) throw (Error)jjte003;}
          } finally {
                  if (jjtc003) {
                    jjtree.closeNodeScope(jjtn003,  2);
                    jjtreeCloseNodeScope(jjtn003);
                  }
          }
          break;
        default:
          jj_la1[80] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
        break;
      default:
        jj_la1[81] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

/*
* The second LOOKAHEAD specification below is to parse to PrimarySuffix
* if there is an expression between the "[...]".
*/
  final public void ArrayDimsAndInits() throws ParseException {
    if (jj_2_26(2)) {
          AstArrayDims jjtn001 = new AstArrayDims(JJTARRAYDIMS);
          boolean jjtc001 = true;
          jjtree.openNodeScope(jjtn001);
          jjtreeOpenNodeScope(jjtn001);
      try {
        label_25:
        while (true) {
          jj_consume_token(LBRACKET);
          Expression();
          jj_consume_token(RBRACKET);
          if (jj_2_24(2)) {
            ;
          } else {
            break label_25;
          }
        }
        label_26:
        while (true) {
          if (jj_2_25(2)) {
            ;
          } else {
            break label_26;
          }
          jj_consume_token(LBRACKET);
          jj_consume_token(RBRACKET);
        }
      } catch (Throwable jjte001) {
          if (jjtc001) {
            jjtree.clearNodeScope(jjtn001);
            jjtc001 = false;
          } else {
            jjtree.popNode();
          }
          if (jjte001 instanceof RuntimeException) {
            {if (true) throw (RuntimeException)jjte001;}
          }
          if (jjte001 instanceof ParseException) {
            {if (true) throw (ParseException)jjte001;}
          }
          {if (true) throw (Error)jjte001;}
      } finally {
          if (jjtc001) {
            jjtree.closeNodeScope(jjtn001, true);
            jjtreeCloseNodeScope(jjtn001);
          }
      }
    } else {
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case LBRACKET:
        label_27:
        while (true) {
          jj_consume_token(LBRACKET);
          jj_consume_token(RBRACKET);
          switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
          case LBRACKET:
            ;
            break;
          default:
            jj_la1[82] = jj_gen;
            break label_27;
          }
        }
        ArrayInitializer();
        break;
      default:
        jj_la1[83] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
  }

  final public void LabeledStatement() throws ParseException {
                           /*@bgen(jjtree) LabeledStatement */
  AstLabeledStatement jjtn000 = new AstLabeledStatement(JJTLABELEDSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IDENTIFIER);
                                                          jjtn000._data= token.image;
      jj_consume_token(COLON);
      JavaStatement();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Block() throws ParseException {
                /*@bgen(jjtree) Block */
  AstBlock jjtn000 = new AstBlock(JJTBLOCK);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(LBRACE);
      label_28:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case CONTENT:
        case BQ_IN:
        case BQBQ:
        case JSP_DIRECTIVE:
        case JSP_DECLARATION:
        case JSP_DECLARATION_TAG:
        case JSP_EXPRESSION:
        case JSP_EXPRESSION_TAG:
        case JSP_EL:
        case NO_PARSE_CONTENT:
        case BOOLEAN:
        case BREAK:
        case BYTE:
        case CHAR:
        case CONTINUE:
        case DO:
        case DOUBLE:
        case FLOAT:
        case FOR:
        case IF:
        case IMPORT:
        case INT:
        case LONG:
        case NEW:
        case RETURN:
        case SHORT:
        case STATIC:
        case SWITCH:
        case SYNCHRONIZED:
        case THROW:
        case TRY:
        case VOID:
        case WHILE:
        case ASSERT:
        case VAR:
        case FUNCTION:
        case EXIT:
        case NULL:
        case TRUE:
        case FALSE:
        case INTEGER_LITERAL:
        case FLOATING_POINT_LITERAL:
        case CHARACTER_LITERAL:
        case STRING_LITERAL:
        case JSP_STRING_LITERAL:
        case IDENTIFIER:
        case LBRACE:
        case LPAREN:
        case SEMICOLON:
        case INCR:
        case DECR:
          ;
          break;
        default:
          jj_la1[84] = jj_gen;
          break label_28;
        }
        JxpStatement();
      }
      jj_consume_token(RBRACE);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void EmptyStatement() throws ParseException {
                         /*@bgen(jjtree) EmptyStatement */
  AstEmptyStatement jjtn000 = new AstEmptyStatement(JJTEMPTYSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(SEMICOLON);
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void StatementExpression() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case INCR:
      jj_consume_token(INCR);
                         AstPreIncrementExpression jjtn001 = new AstPreIncrementExpression(JJTPREINCREMENTEXPRESSION);
                         boolean jjtc001 = true;
                         jjtree.openNodeScope(jjtn001);
                         jjtreeOpenNodeScope(jjtn001);
      try {
        PrimaryExpression();
      } catch (Throwable jjte001) {
                         if (jjtc001) {
                           jjtree.clearNodeScope(jjtn001);
                           jjtc001 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte001 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte001;}
                         }
                         if (jjte001 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte001;}
                         }
                         {if (true) throw (Error)jjte001;}
      } finally {
                         if (jjtc001) {
                           jjtree.closeNodeScope(jjtn001,  true);
                           jjtreeCloseNodeScope(jjtn001);
                         }
      }
      break;
    case DECR:
      jj_consume_token(DECR);
                         AstPreDecrementExpression jjtn002 = new AstPreDecrementExpression(JJTPREDECREMENTEXPRESSION);
                         boolean jjtc002 = true;
                         jjtree.openNodeScope(jjtn002);
                         jjtreeOpenNodeScope(jjtn002);
      try {
        PrimaryExpression();
      } catch (Throwable jjte002) {
                         if (jjtc002) {
                           jjtree.clearNodeScope(jjtn002);
                           jjtc002 = false;
                         } else {
                           jjtree.popNode();
                         }
                         if (jjte002 instanceof RuntimeException) {
                           {if (true) throw (RuntimeException)jjte002;}
                         }
                         if (jjte002 instanceof ParseException) {
                           {if (true) throw (ParseException)jjte002;}
                         }
                         {if (true) throw (Error)jjte002;}
      } finally {
                         if (jjtc002) {
                           jjtree.closeNodeScope(jjtn002,  true);
                           jjtreeCloseNodeScope(jjtn002);
                         }
      }
      break;
    case BOOLEAN:
    case BYTE:
    case CHAR:
    case DOUBLE:
    case FLOAT:
    case INT:
    case LONG:
    case NEW:
    case SHORT:
    case VOID:
    case VAR:
    case NULL:
    case TRUE:
    case FALSE:
    case INTEGER_LITERAL:
    case FLOATING_POINT_LITERAL:
    case CHARACTER_LITERAL:
    case STRING_LITERAL:
    case JSP_STRING_LITERAL:
    case IDENTIFIER:
    case LPAREN:
      PrimaryExpression();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case ASSIGN:
      case INCR:
      case DECR:
      case PLUSASSIGN:
      case MINUSASSIGN:
      case STARASSIGN:
      case SLASHASSIGN:
      case ANDASSIGN:
      case ORASSIGN:
      case XORASSIGN:
      case REMASSIGN:
      case LSHIFTASSIGN:
      case RSIGNEDSHIFTASSIGN:
      case RUNSIGNEDSHIFTASSIGN:
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case INCR:
                          AstPostIncrementExpression jjtn003 = new AstPostIncrementExpression(JJTPOSTINCREMENTEXPRESSION);
                          boolean jjtc003 = true;
                          jjtree.openNodeScope(jjtn003);
                          jjtreeOpenNodeScope(jjtn003);
          try {
            jj_consume_token(INCR);
          } finally {
                          if (jjtc003) {
                            jjtree.closeNodeScope(jjtn003,  1);
                            jjtreeCloseNodeScope(jjtn003);
                          }
          }
          break;
        case DECR:
                          AstPostDecrementExpression jjtn004 = new AstPostDecrementExpression(JJTPOSTDECREMENTEXPRESSION);
                          boolean jjtc004 = true;
                          jjtree.openNodeScope(jjtn004);
                          jjtreeOpenNodeScope(jjtn004);
          try {
            jj_consume_token(DECR);
          } finally {
                          if (jjtc004) {
                            jjtree.closeNodeScope(jjtn004,  1);
                            jjtreeCloseNodeScope(jjtn004);
                          }
          }
          break;
        case ASSIGN:
          jj_consume_token(ASSIGN);
                                   AstAssignExpression jjtn005 = new AstAssignExpression(JJTASSIGNEXPRESSION);
                                   boolean jjtc005 = true;
                                   jjtree.openNodeScope(jjtn005);
                                   jjtreeOpenNodeScope(jjtn005);
          try {
            Expression();
          } catch (Throwable jjte005) {
                                   if (jjtc005) {
                                     jjtree.clearNodeScope(jjtn005);
                                     jjtc005 = false;
                                   } else {
                                     jjtree.popNode();
                                   }
                                   if (jjte005 instanceof RuntimeException) {
                                     {if (true) throw (RuntimeException)jjte005;}
                                   }
                                   if (jjte005 instanceof ParseException) {
                                     {if (true) throw (ParseException)jjte005;}
                                   }
                                   {if (true) throw (Error)jjte005;}
          } finally {
                                   if (jjtc005) {
                                     jjtree.closeNodeScope(jjtn005,  2);
                                     jjtreeCloseNodeScope(jjtn005);
                                   }
          }
          break;
        case STARASSIGN:
          jj_consume_token(STARASSIGN);
                                       AstMultiplyAssignExpression jjtn006 = new AstMultiplyAssignExpression(JJTMULTIPLYASSIGNEXPRESSION);
                                       boolean jjtc006 = true;
                                       jjtree.openNodeScope(jjtn006);
                                       jjtreeOpenNodeScope(jjtn006);
          try {
            Expression();
          } catch (Throwable jjte006) {
                                       if (jjtc006) {
                                         jjtree.clearNodeScope(jjtn006);
                                         jjtc006 = false;
                                       } else {
                                         jjtree.popNode();
                                       }
                                       if (jjte006 instanceof RuntimeException) {
                                         {if (true) throw (RuntimeException)jjte006;}
                                       }
                                       if (jjte006 instanceof ParseException) {
                                         {if (true) throw (ParseException)jjte006;}
                                       }
                                       {if (true) throw (Error)jjte006;}
          } finally {
                                       if (jjtc006) {
                                         jjtree.closeNodeScope(jjtn006,  2);
                                         jjtreeCloseNodeScope(jjtn006);
                                       }
          }
          break;
        case SLASHASSIGN:
          jj_consume_token(SLASHASSIGN);
                                        AstDivideAssignExpression jjtn007 = new AstDivideAssignExpression(JJTDIVIDEASSIGNEXPRESSION);
                                        boolean jjtc007 = true;
                                        jjtree.openNodeScope(jjtn007);
                                        jjtreeOpenNodeScope(jjtn007);
          try {
            Expression();
          } catch (Throwable jjte007) {
                                        if (jjtc007) {
                                          jjtree.clearNodeScope(jjtn007);
                                          jjtc007 = false;
                                        } else {
                                          jjtree.popNode();
                                        }
                                        if (jjte007 instanceof RuntimeException) {
                                          {if (true) throw (RuntimeException)jjte007;}
                                        }
                                        if (jjte007 instanceof ParseException) {
                                          {if (true) throw (ParseException)jjte007;}
                                        }
                                        {if (true) throw (Error)jjte007;}
          } finally {
                                        if (jjtc007) {
                                          jjtree.closeNodeScope(jjtn007,  2);
                                          jjtreeCloseNodeScope(jjtn007);
                                        }
          }
          break;
        case REMASSIGN:
          jj_consume_token(REMASSIGN);
                                      AstRemAssignExpression jjtn008 = new AstRemAssignExpression(JJTREMASSIGNEXPRESSION);
                                      boolean jjtc008 = true;
                                      jjtree.openNodeScope(jjtn008);
                                      jjtreeOpenNodeScope(jjtn008);
          try {
            Expression();
          } catch (Throwable jjte008) {
                                      if (jjtc008) {
                                        jjtree.clearNodeScope(jjtn008);
                                        jjtc008 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte008 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte008;}
                                      }
                                      if (jjte008 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte008;}
                                      }
                                      {if (true) throw (Error)jjte008;}
          } finally {
                                      if (jjtc008) {
                                        jjtree.closeNodeScope(jjtn008,  2);
                                        jjtreeCloseNodeScope(jjtn008);
                                      }
          }
          break;
        case PLUSASSIGN:
          jj_consume_token(PLUSASSIGN);
                                       AstPlusAssignExpression jjtn009 = new AstPlusAssignExpression(JJTPLUSASSIGNEXPRESSION);
                                       boolean jjtc009 = true;
                                       jjtree.openNodeScope(jjtn009);
                                       jjtreeOpenNodeScope(jjtn009);
          try {
            Expression();
          } catch (Throwable jjte009) {
                                       if (jjtc009) {
                                         jjtree.clearNodeScope(jjtn009);
                                         jjtc009 = false;
                                       } else {
                                         jjtree.popNode();
                                       }
                                       if (jjte009 instanceof RuntimeException) {
                                         {if (true) throw (RuntimeException)jjte009;}
                                       }
                                       if (jjte009 instanceof ParseException) {
                                         {if (true) throw (ParseException)jjte009;}
                                       }
                                       {if (true) throw (Error)jjte009;}
          } finally {
                                       if (jjtc009) {
                                         jjtree.closeNodeScope(jjtn009,  2);
                                         jjtreeCloseNodeScope(jjtn009);
                                       }
          }
          break;
        case MINUSASSIGN:
          jj_consume_token(MINUSASSIGN);
                                        AstMinusAssignExpression jjtn010 = new AstMinusAssignExpression(JJTMINUSASSIGNEXPRESSION);
                                        boolean jjtc010 = true;
                                        jjtree.openNodeScope(jjtn010);
                                        jjtreeOpenNodeScope(jjtn010);
          try {
            Expression();
          } catch (Throwable jjte010) {
                                        if (jjtc010) {
                                          jjtree.clearNodeScope(jjtn010);
                                          jjtc010 = false;
                                        } else {
                                          jjtree.popNode();
                                        }
                                        if (jjte010 instanceof RuntimeException) {
                                          {if (true) throw (RuntimeException)jjte010;}
                                        }
                                        if (jjte010 instanceof ParseException) {
                                          {if (true) throw (ParseException)jjte010;}
                                        }
                                        {if (true) throw (Error)jjte010;}
          } finally {
                                        if (jjtc010) {
                                          jjtree.closeNodeScope(jjtn010,  2);
                                          jjtreeCloseNodeScope(jjtn010);
                                        }
          }
          break;
        case LSHIFTASSIGN:
          jj_consume_token(LSHIFTASSIGN);
                                         AstLShiftAssignExpression jjtn011 = new AstLShiftAssignExpression(JJTLSHIFTASSIGNEXPRESSION);
                                         boolean jjtc011 = true;
                                         jjtree.openNodeScope(jjtn011);
                                         jjtreeOpenNodeScope(jjtn011);
          try {
            Expression();
          } catch (Throwable jjte011) {
                                         if (jjtc011) {
                                           jjtree.clearNodeScope(jjtn011);
                                           jjtc011 = false;
                                         } else {
                                           jjtree.popNode();
                                         }
                                         if (jjte011 instanceof RuntimeException) {
                                           {if (true) throw (RuntimeException)jjte011;}
                                         }
                                         if (jjte011 instanceof ParseException) {
                                           {if (true) throw (ParseException)jjte011;}
                                         }
                                         {if (true) throw (Error)jjte011;}
          } finally {
                                         if (jjtc011) {
                                           jjtree.closeNodeScope(jjtn011,  2);
                                           jjtreeCloseNodeScope(jjtn011);
                                         }
          }
          break;
        case RSIGNEDSHIFTASSIGN:
          jj_consume_token(RSIGNEDSHIFTASSIGN);
                                               AstRSignedShiftAssignExpression jjtn012 = new AstRSignedShiftAssignExpression(JJTRSIGNEDSHIFTASSIGNEXPRESSION);
                                               boolean jjtc012 = true;
                                               jjtree.openNodeScope(jjtn012);
                                               jjtreeOpenNodeScope(jjtn012);
          try {
            Expression();
          } catch (Throwable jjte012) {
                                               if (jjtc012) {
                                                 jjtree.clearNodeScope(jjtn012);
                                                 jjtc012 = false;
                                               } else {
                                                 jjtree.popNode();
                                               }
                                               if (jjte012 instanceof RuntimeException) {
                                                 {if (true) throw (RuntimeException)jjte012;}
                                               }
                                               if (jjte012 instanceof ParseException) {
                                                 {if (true) throw (ParseException)jjte012;}
                                               }
                                               {if (true) throw (Error)jjte012;}
          } finally {
                                               if (jjtc012) {
                                                 jjtree.closeNodeScope(jjtn012,  2);
                                                 jjtreeCloseNodeScope(jjtn012);
                                               }
          }
          break;
        case RUNSIGNEDSHIFTASSIGN:
          jj_consume_token(RUNSIGNEDSHIFTASSIGN);
                                                 AstRUnsignedShiftAssignExpression jjtn013 = new AstRUnsignedShiftAssignExpression(JJTRUNSIGNEDSHIFTASSIGNEXPRESSION);
                                                 boolean jjtc013 = true;
                                                 jjtree.openNodeScope(jjtn013);
                                                 jjtreeOpenNodeScope(jjtn013);
          try {
            Expression();
          } catch (Throwable jjte013) {
                                                 if (jjtc013) {
                                                   jjtree.clearNodeScope(jjtn013);
                                                   jjtc013 = false;
                                                 } else {
                                                   jjtree.popNode();
                                                 }
                                                 if (jjte013 instanceof RuntimeException) {
                                                   {if (true) throw (RuntimeException)jjte013;}
                                                 }
                                                 if (jjte013 instanceof ParseException) {
                                                   {if (true) throw (ParseException)jjte013;}
                                                 }
                                                 {if (true) throw (Error)jjte013;}
          } finally {
                                                 if (jjtc013) {
                                                   jjtree.closeNodeScope(jjtn013,  2);
                                                   jjtreeCloseNodeScope(jjtn013);
                                                 }
          }
          break;
        case ANDASSIGN:
          jj_consume_token(ANDASSIGN);
                                      AstBitwiseAndAssignExpression jjtn014 = new AstBitwiseAndAssignExpression(JJTBITWISEANDASSIGNEXPRESSION);
                                      boolean jjtc014 = true;
                                      jjtree.openNodeScope(jjtn014);
                                      jjtreeOpenNodeScope(jjtn014);
          try {
            Expression();
          } catch (Throwable jjte014) {
                                      if (jjtc014) {
                                        jjtree.clearNodeScope(jjtn014);
                                        jjtc014 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte014 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte014;}
                                      }
                                      if (jjte014 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte014;}
                                      }
                                      {if (true) throw (Error)jjte014;}
          } finally {
                                      if (jjtc014) {
                                        jjtree.closeNodeScope(jjtn014,  2);
                                        jjtreeCloseNodeScope(jjtn014);
                                      }
          }
          break;
        case XORASSIGN:
          jj_consume_token(XORASSIGN);
                                      AstBitwiseXOrAssignExpression jjtn015 = new AstBitwiseXOrAssignExpression(JJTBITWISEXORASSIGNEXPRESSION);
                                      boolean jjtc015 = true;
                                      jjtree.openNodeScope(jjtn015);
                                      jjtreeOpenNodeScope(jjtn015);
          try {
            Expression();
          } catch (Throwable jjte015) {
                                      if (jjtc015) {
                                        jjtree.clearNodeScope(jjtn015);
                                        jjtc015 = false;
                                      } else {
                                        jjtree.popNode();
                                      }
                                      if (jjte015 instanceof RuntimeException) {
                                        {if (true) throw (RuntimeException)jjte015;}
                                      }
                                      if (jjte015 instanceof ParseException) {
                                        {if (true) throw (ParseException)jjte015;}
                                      }
                                      {if (true) throw (Error)jjte015;}
          } finally {
                                      if (jjtc015) {
                                        jjtree.closeNodeScope(jjtn015,  2);
                                        jjtreeCloseNodeScope(jjtn015);
                                      }
          }
          break;
        case ORASSIGN:
          jj_consume_token(ORASSIGN);
                                     AstBitwiseOrAssignExpression jjtn016 = new AstBitwiseOrAssignExpression(JJTBITWISEORASSIGNEXPRESSION);
                                     boolean jjtc016 = true;
                                     jjtree.openNodeScope(jjtn016);
                                     jjtreeOpenNodeScope(jjtn016);
          try {
            Expression();
          } catch (Throwable jjte016) {
                                     if (jjtc016) {
                                       jjtree.clearNodeScope(jjtn016);
                                       jjtc016 = false;
                                     } else {
                                       jjtree.popNode();
                                     }
                                     if (jjte016 instanceof RuntimeException) {
                                       {if (true) throw (RuntimeException)jjte016;}
                                     }
                                     if (jjte016 instanceof ParseException) {
                                       {if (true) throw (ParseException)jjte016;}
                                     }
                                     {if (true) throw (Error)jjte016;}
          } finally {
                                     if (jjtc016) {
                                       jjtree.closeNodeScope(jjtn016,  2);
                                       jjtreeCloseNodeScope(jjtn016);
                                     }
          }
          break;
        default:
          jj_la1[85] = jj_gen;
          jj_consume_token(-1);
          throw new ParseException();
        }
        break;
      default:
        jj_la1[86] = jj_gen;
        ;
      }
      break;
    default:
      jj_la1[87] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void SwitchStatement() throws ParseException {
                          /*@bgen(jjtree) SwitchStatement */
  AstSwitchStatement jjtn000 = new AstSwitchStatement(JJTSWITCHSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(SWITCH);
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      jj_consume_token(LBRACE);
      label_29:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case CASE:
        case _DEFAULT:
          ;
          break;
        default:
          jj_la1[88] = jj_gen;
          break label_29;
        }
        Case();
      }
      jj_consume_token(RBRACE);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void Case() throws ParseException {
               /*@bgen(jjtree) Case */
  AstCase jjtn000 = new AstCase(JJTCASE);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      SwitchLabel();
                        AstBlock jjtn001 = new AstBlock(JJTBLOCK);
                        boolean jjtc001 = true;
                        jjtree.openNodeScope(jjtn001);
                        jjtreeOpenNodeScope(jjtn001);
      try {
        label_30:
        while (true) {
          switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
          case CONTENT:
          case BQ_IN:
          case BQBQ:
          case JSP_DIRECTIVE:
          case JSP_DECLARATION:
          case JSP_DECLARATION_TAG:
          case JSP_EXPRESSION:
          case JSP_EXPRESSION_TAG:
          case JSP_EL:
          case NO_PARSE_CONTENT:
          case BOOLEAN:
          case BREAK:
          case BYTE:
          case CHAR:
          case CONTINUE:
          case DO:
          case DOUBLE:
          case FLOAT:
          case FOR:
          case IF:
          case IMPORT:
          case INT:
          case LONG:
          case NEW:
          case RETURN:
          case SHORT:
          case STATIC:
          case SWITCH:
          case SYNCHRONIZED:
          case THROW:
          case TRY:
          case VOID:
          case WHILE:
          case ASSERT:
          case VAR:
          case FUNCTION:
          case EXIT:
          case NULL:
          case TRUE:
          case FALSE:
          case INTEGER_LITERAL:
          case FLOATING_POINT_LITERAL:
          case CHARACTER_LITERAL:
          case STRING_LITERAL:
          case JSP_STRING_LITERAL:
          case IDENTIFIER:
          case LBRACE:
          case LPAREN:
          case SEMICOLON:
          case INCR:
          case DECR:
            ;
            break;
          default:
            jj_la1[89] = jj_gen;
            break label_30;
          }
          JxpStatement();
        }
      } catch (Throwable jjte001) {
                        if (jjtc001) {
                          jjtree.clearNodeScope(jjtn001);
                          jjtc001 = false;
                        } else {
                          jjtree.popNode();
                        }
                        if (jjte001 instanceof RuntimeException) {
                          {if (true) throw (RuntimeException)jjte001;}
                        }
                        if (jjte001 instanceof ParseException) {
                          {if (true) throw (ParseException)jjte001;}
                        }
                        {if (true) throw (Error)jjte001;}
      } finally {
                        if (jjtc001) {
                          jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1);
                          jjtreeCloseNodeScope(jjtn001);
                        }
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void SwitchLabel() throws ParseException {
    switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
    case CASE:
      jj_consume_token(CASE);
      Expression();
      jj_consume_token(COLON);
      break;
    case _DEFAULT:
      jj_consume_token(_DEFAULT);
      jj_consume_token(COLON);
      break;
    default:
      jj_la1[90] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
  }

  final public void IfStatement() throws ParseException {
    /*@bgen(jjtree) IfStatement */
  AstIfStatement jjtn000 = new AstIfStatement(JJTIFSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(IF);
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      JavaStatement();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case ELSE:
        jj_consume_token(ELSE);
        JavaStatement();
        break;
      default:
        jj_la1[91] = jj_gen;
        ;
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void WhileStatement() throws ParseException {
                         /*@bgen(jjtree) WhileStatement */
  AstWhileStatement jjtn000 = new AstWhileStatement(JJTWHILESTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(WHILE);
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      JavaStatement();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void DoStatement() throws ParseException {
                      /*@bgen(jjtree) DoStatement */
  AstDoStatement jjtn000 = new AstDoStatement(JJTDOSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(DO);
      JavaStatement();
      jj_consume_token(WHILE);
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void EnhancedForStatement() throws ParseException {
                               /*@bgen(jjtree) EnhancedForStatement */
  AstEnhancedForStatement jjtn000 = new AstEnhancedForStatement(JJTENHANCEDFORSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(FOR);
      jj_consume_token(LPAREN);
      Type();
      jj_consume_token(IDENTIFIER);
                                             jjtn000._data = token.image;
      jj_consume_token(COLON);
      Expression();
      jj_consume_token(RPAREN);
      JavaStatement();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ForStatement() throws ParseException {
                       /*@bgen(jjtree) ForStatement */
  AstForStatement jjtn000 = new AstForStatement(JJTFORSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(FOR);
      jj_consume_token(LPAREN);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case STATIC:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case INCR:
      case DECR:
        ForInit();
        break;
      default:
        jj_la1[92] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case JSP_EMPTY:
      case JSP_NOT:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case BANG:
      case TILDE:
      case INCR:
      case DECR:
      case PLUS:
      case MINUS:
        Expression();
        break;
      default:
        jj_la1[93] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case INCR:
      case DECR:
        ForUpdate();
        break;
      default:
        jj_la1[94] = jj_gen;
        ;
      }
      jj_consume_token(RPAREN);
      JavaStatement();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ForInit() throws ParseException {
                  /*@bgen(jjtree) ForInit */
  AstForInit jjtn000 = new AstForInit(JJTFORINIT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      if (jj_2_27(2)) {
        FieldDeclaration();
      } else {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case BOOLEAN:
        case BYTE:
        case CHAR:
        case DOUBLE:
        case FLOAT:
        case INT:
        case LONG:
        case NEW:
        case SHORT:
        case VOID:
        case VAR:
        case NULL:
        case TRUE:
        case FALSE:
        case INTEGER_LITERAL:
        case FLOATING_POINT_LITERAL:
        case CHARACTER_LITERAL:
        case STRING_LITERAL:
        case JSP_STRING_LITERAL:
        case IDENTIFIER:
        case LPAREN:
        case INCR:
        case DECR:
          StatementExpressionList();
          break;
        default:
          jj_la1[95] = 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void StatementExpressionList() throws ParseException {
    StatementExpression();
                                AstStatementExpressionList jjtn001 = new AstStatementExpressionList(JJTSTATEMENTEXPRESSIONLIST);
                                boolean jjtc001 = true;
                                jjtree.openNodeScope(jjtn001);
                                jjtreeOpenNodeScope(jjtn001);
    try {
      label_31:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case 173:
          ;
          break;
        default:
          jj_la1[96] = jj_gen;
          break label_31;
        }
        jj_consume_token(173);
        StatementExpression();
      }
    } catch (Throwable jjte001) {
                                if (jjtc001) {
                                  jjtree.clearNodeScope(jjtn001);
                                  jjtc001 = false;
                                } else {
                                  jjtree.popNode();
                                }
                                if (jjte001 instanceof RuntimeException) {
                                  {if (true) throw (RuntimeException)jjte001;}
                                }
                                if (jjte001 instanceof ParseException) {
                                  {if (true) throw (ParseException)jjte001;}
                                }
                                {if (true) throw (Error)jjte001;}
    } finally {
                                if (jjtc001) {
                                  jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1);
                                  jjtreeCloseNodeScope(jjtn001);
                                }
    }
  }

  final public void ForUpdate() throws ParseException {
                    /*@bgen(jjtree) ForUpdate */
  AstForUpdate jjtn000 = new AstForUpdate(JJTFORUPDATE);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      StatementExpressionList();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void BreakStatement() throws ParseException {
                         /*@bgen(jjtree) BreakStatement */
  AstBreakStatement jjtn000 = new AstBreakStatement(JJTBREAKSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(BREAK);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case IDENTIFIER:
        jj_consume_token(IDENTIFIER);
                                                          jjtn000._data= token.image;
        break;
      default:
        jj_la1[97] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ContinueStatement() throws ParseException {
                            /*@bgen(jjtree) ContinueStatement */
  AstContinueStatement jjtn000 = new AstContinueStatement(JJTCONTINUESTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(CONTINUE);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case IDENTIFIER:
        jj_consume_token(IDENTIFIER);
                                                          jjtn000._data= token.image;
        break;
      default:
        jj_la1[98] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } finally {
          if (jjtc000) {
            jjtree.closeNodeScope(jjtn000, true);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ReturnStatement() throws ParseException {
                          /*@bgen(jjtree) ReturnStatement */
  AstReturnStatement jjtn000 = new AstReturnStatement(JJTRETURNSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(RETURN);
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case BOOLEAN:
      case BYTE:
      case CHAR:
      case DOUBLE:
      case FLOAT:
      case INT:
      case LONG:
      case NEW:
      case SHORT:
      case VOID:
      case VAR:
      case NULL:
      case TRUE:
      case FALSE:
      case JSP_EMPTY:
      case JSP_NOT:
      case INTEGER_LITERAL:
      case FLOATING_POINT_LITERAL:
      case CHARACTER_LITERAL:
      case STRING_LITERAL:
      case JSP_STRING_LITERAL:
      case IDENTIFIER:
      case LPAREN:
      case BANG:
      case TILDE:
      case INCR:
      case DECR:
      case PLUS:
      case MINUS:
        Expression();
        break;
      default:
        jj_la1[99] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void ThrowStatement() throws ParseException {
                         /*@bgen(jjtree) ThrowStatement */
  AstThrowStatement jjtn000 = new AstThrowStatement(JJTTHROWSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(THROW);
      Expression();
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void SynchronizedStatement() throws ParseException {
                                /*@bgen(jjtree) SynchronizedStatement */
  AstSynchronizedStatement jjtn000 = new AstSynchronizedStatement(JJTSYNCHRONIZEDSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(SYNCHRONIZED);
      jj_consume_token(LPAREN);
      Expression();
      jj_consume_token(RPAREN);
      Block();
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void TryStatement() throws ParseException {
    /*@bgen(jjtree) TryStatement */
  AstTryStatement jjtn000 = new AstTryStatement(JJTTRYSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(TRY);
      Block();
      label_32:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case CATCH:
          ;
          break;
        default:
          jj_la1[100] = jj_gen;
          break label_32;
        }
        jj_consume_token(CATCH);
        jj_consume_token(LPAREN);
        Type();
        VariableDeclaratorId();
        jj_consume_token(RPAREN);
                                                                                   AstCatchBlock jjtn001 = new AstCatchBlock(JJTCATCHBLOCK);
                                                                                   boolean jjtc001 = true;
                                                                                   jjtree.openNodeScope(jjtn001);
                                                                                   jjtreeOpenNodeScope(jjtn001);
        try {
          Block();
        } catch (Throwable jjte001) {
                                                                                   if (jjtc001) {
                                                                                     jjtree.clearNodeScope(jjtn001);
                                                                                     jjtc001 = false;
                                                                                   } else {
                                                                                     jjtree.popNode();
                                                                                   }
                                                                                   if (jjte001 instanceof RuntimeException) {
                                                                                     {if (true) throw (RuntimeException)jjte001;}
                                                                                   }
                                                                                   if (jjte001 instanceof ParseException) {
                                                                                     {if (true) throw (ParseException)jjte001;}
                                                                                   }
                                                                                   {if (true) throw (Error)jjte001;}
        } finally {
                                                                                   if (jjtc001) {
                                                                                     jjtree.closeNodeScope(jjtn001,  3);
                                                                                     jjtreeCloseNodeScope(jjtn001);
                                                                                   }
        }
      }
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case FINALLY:
        jj_consume_token(FINALLY);
                                                                                                                         AstFinallyBlock jjtn002 = new AstFinallyBlock(JJTFINALLYBLOCK);
                                                                                                                         boolean jjtc002 = true;
                                                                                                                         jjtree.openNodeScope(jjtn002);
                                                                                                                         jjtreeOpenNodeScope(jjtn002);
        try {
          Block();
        } catch (Throwable jjte002) {
                                                                                                                         if (jjtc002) {
                                                                                                                           jjtree.clearNodeScope(jjtn002);
                                                                                                                           jjtc002 = false;
                                                                                                                         } else {
                                                                                                                           jjtree.popNode();
                                                                                                                         }
                                                                                                                         if (jjte002 instanceof RuntimeException) {
                                                                                                                           {if (true) throw (RuntimeException)jjte002;}
                                                                                                                         }
                                                                                                                         if (jjte002 instanceof ParseException) {
                                                                                                                           {if (true) throw (ParseException)jjte002;}
                                                                                                                         }
                                                                                                                         {if (true) throw (Error)jjte002;}
        } finally {
                                                                                                                         if (jjtc002) {
                                                                                                                           jjtree.closeNodeScope(jjtn002,  1);
                                                                                                                           jjtreeCloseNodeScope(jjtn002);
                                                                                                                         }
        }
        break;
      default:
        jj_la1[101] = jj_gen;
        ;
      }
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

// added by Andrea Gini
  final public void AssertStatement() throws ParseException {
                          /*@bgen(jjtree) AssertStatement */
  AstAssertStatement jjtn000 = new AstAssertStatement(JJTASSERTSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(ASSERT);
      Expression();
      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
      case COLON:
        jj_consume_token(COLON);
        Expression();
        break;
      default:
        jj_la1[102] = jj_gen;
        ;
      }
      jj_consume_token(SEMICOLON);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final public void PrintStatement() throws ParseException {
                         /*@bgen(jjtree) PrintStatement */
  AstPrintStatement jjtn000 = new AstPrintStatement(JJTPRINTSTATEMENT);
  boolean jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
  jjtreeOpenNodeScope(jjtn000);
    try {
      jj_consume_token(BQ_IN);
      Expression();
      jj_consume_token(BQ_OUT);
    } 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);
            jjtreeCloseNodeScope(jjtn000);
          }
    }
  }

  final private boolean jj_2_1(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_1(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(0, xla); }
  }

  final private boolean jj_2_2(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_2(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(1, xla); }
  }

  final private boolean jj_2_3(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_3(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(2, xla); }
  }

  final private boolean jj_2_4(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_4(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(3, xla); }
  }

  final private boolean jj_2_5(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_5(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(4, xla); }
  }

  final private boolean jj_2_6(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_6(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(5, xla); }
  }

  final private boolean jj_2_7(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_7(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(6, xla); }
  }

  final private boolean jj_2_8(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_8(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(7, xla); }
  }

  final private boolean jj_2_9(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_9(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(8, xla); }
  }

  final private boolean jj_2_10(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_10(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(9, xla); }
  }

  final private boolean jj_2_11(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_11(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(10, xla); }
  }

  final private boolean jj_2_12(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_12(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(11, xla); }
  }

  final private boolean jj_2_13(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_13(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(12, xla); }
  }

  final private boolean jj_2_14(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_14(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(13, xla); }
  }

  final private boolean jj_2_15(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_15(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(14, xla); }
  }

  final private boolean jj_2_16(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_16(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(15, xla); }
  }

  final private boolean jj_2_17(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_17(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(16, xla); }
  }

  final private boolean jj_2_18(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_18(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(17, xla); }
  }

  final private boolean jj_2_19(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_19(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(18, xla); }
  }

  final private boolean jj_2_20(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_20(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(19, xla); }
  }

  final private boolean jj_2_21(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_21(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(20, xla); }
  }

  final private boolean jj_2_22(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_22(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(21, xla); }
  }

  final private boolean jj_2_23(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_23(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(22, xla); }
  }

  final private boolean jj_2_24(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_24(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(23, xla); }
  }

  final private boolean jj_2_25(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_25(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(24, xla); }
  }

  final private boolean jj_2_26(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_26(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(25, xla); }
  }

  final private boolean jj_2_27(int xla) {
    jj_la = xla; jj_lastpos = jj_scanpos = token;
    try { return !jj_3_27(); }
    catch(LookaheadSuccess ls) { return true; }
    finally { jj_save(26, xla); }
  }

  final private boolean jj_3R_109() {
    if (jj_scan_token(INCR)) return true;
    return false;
  }

  final private boolean jj_3R_61() {
    if (jj_scan_token(LBRACKET)) return true;
    if (jj_scan_token(RBRACKET)) return true;
    return false;
  }

  final private boolean jj_3R_108() {
    if (jj_scan_token(MINUS)) return true;
    return false;
  }

  final private boolean jj_3R_76() {
    if (jj_scan_token(VAR)) return true;
    return false;
  }

  final private boolean jj_3R_107() {
    if (jj_scan_token(PLUS)) return true;
    return false;
  }

  final private boolean jj_3R_55() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_scan_token(87)) {
    jj_scanpos = xsp;
    if (jj_3R_80()) return true;
    }
    return false;
  }

  final private boolean jj_3R_75() {
    if (jj_scan_token(DOUBLE)) return true;
    return false;
  }

  final private boolean jj_3R_74() {
    if (jj_scan_token(FLOAT)) return true;
    return false;
  }

  final private boolean jj_3R_73() {
    if (jj_scan_token(LONG)) return true;
    return false;
  }

  final private boolean jj_3_3() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_scan_token(78)) jj_scanpos = xsp;
    if (jj_3R_35()) return true;
    if (jj_scan_token(IDENTIFIER)) return true;
    return false;
  }

  final private boolean jj_3R_72() {
    if (jj_scan_token(INT)) return true;
    return false;
  }

  final private boolean jj_3_20() {
    if (jj_3R_56()) return true;
    return false;
  }

  final private boolean jj_3R_60() {
    if (jj_3R_37()) return true;
    return false;
  }

  final private boolean jj_3R_71() {
    if (jj_scan_token(SHORT)) return true;
    return false;
  }

  final private boolean jj_3R_106() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_107()) {
    jj_scanpos = xsp;
    if (jj_3R_108()) {
    jj_scanpos = xsp;
    if (jj_3R_109()) {
    jj_scanpos = xsp;
    if (jj_3R_110()) {
    jj_scanpos = xsp;
    if (jj_3R_111()) return true;
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_70() {
    if (jj_scan_token(BYTE)) return true;
    return false;
  }

  final private boolean jj_3_26() {
    Token xsp;
    if (jj_3_24()) return true;
    while (true) {
      xsp = jj_scanpos;
      if (jj_3_24()) { jj_scanpos = xsp; break; }
    }
    return false;
  }

  final private boolean jj_3R_69() {
    if (jj_scan_token(CHAR)) return true;
    return false;
  }

  final private boolean jj_3R_68() {
    if (jj_scan_token(BOOLEAN)) return true;
    return false;
  }

  final private boolean jj_3_2() {
    if (jj_3R_34()) return true;
    return false;
  }

  final private boolean jj_3R_105() {
    if (jj_3R_106()) return true;
    return false;
  }

  final private boolean jj_3_1() {
    if (jj_3R_33()) return true;
    return false;
  }

  final private boolean jj_3R_51() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_68()) {
    jj_scanpos = xsp;
    if (jj_3R_69()) {
    jj_scanpos = xsp;
    if (jj_3R_70()) {
    jj_scanpos = xsp;
    if (jj_3R_71()) {
    jj_scanpos = xsp;
    if (jj_3R_72()) {
    jj_scanpos = xsp;
    if (jj_3R_73()) {
    jj_scanpos = xsp;
    if (jj_3R_74()) {
    jj_scanpos = xsp;
    if (jj_3R_75()) {
    jj_scanpos = xsp;
    if (jj_3R_76()) return true;
    }
    }
    }
    }
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_77() {
    if (jj_scan_token(NEW)) return true;
    return false;
  }

  final private boolean jj_3R_59() {
    if (jj_3R_51()) return true;
    return false;
  }

  final private boolean jj_3R_35() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_59()) {
    jj_scanpos = xsp;
    if (jj_3R_60()) return true;
    }
    while (true) {
      xsp = jj_scanpos;
      if (jj_3R_61()) { jj_scanpos = xsp; break; }
    }
    return false;
  }

  final private boolean jj_3_23() {
    if (jj_scan_token(NEW)) return true;
    if (jj_3R_51()) return true;
    return false;
  }

  final private boolean jj_3R_52() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3_23()) {
    jj_scanpos = xsp;
    if (jj_3R_77()) return true;
    }
    return false;
  }

  final private boolean jj_3R_104() {
    if (jj_3R_105()) return true;
    return false;
  }

  final private boolean jj_3R_57() {
    if (jj_scan_token(IDENTIFIER)) return true;
    if (jj_scan_token(COLON)) return true;
    return false;
  }

  final private boolean jj_3R_56() {
    if (jj_3R_57()) return true;
    return false;
  }

  final private boolean jj_3_21() {
    if (jj_3R_57()) return true;
    return false;
  }

  final private boolean jj_3R_103() {
    if (jj_3R_104()) return true;
    return false;
  }

  final private boolean jj_3_22() {
    if (jj_3R_57()) return true;
    return false;
  }

  final private boolean jj_3_6() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_35()) return true;
    if (jj_scan_token(DOTDOTDOT)) return true;
    if (jj_scan_token(IDENTIFIER)) return true;
    return false;
  }

  final private boolean jj_3R_102() {
    if (jj_3R_103()) return true;
    return false;
  }

  final private boolean jj_3R_96() {
    if (jj_scan_token(NULL)) return true;
    return false;
  }

  final private boolean jj_3R_95() {
    if (jj_scan_token(FALSE)) return true;
    return false;
  }

  final private boolean jj_3R_79() {
    if (jj_scan_token(LPAREN)) return true;
    return false;
  }

  final private boolean jj_3R_94() {
    if (jj_scan_token(TRUE)) return true;
    return false;
  }

  final private boolean jj_3R_84() {
    if (jj_3R_87()) return true;
    return false;
  }

  final private boolean jj_3R_101() {
    if (jj_3R_102()) return true;
    return false;
  }

  final private boolean jj_3R_93() {
    if (jj_scan_token(JSP_STRING_LITERAL)) return true;
    return false;
  }

  final private boolean jj_3_5() {
    if (jj_scan_token(COMMA)) return true;
    if (jj_3R_36()) return true;
    return false;
  }

  final private boolean jj_3R_63() {
    if (jj_3R_53()) return true;
    return false;
  }

  final private boolean jj_3_27() {
    if (jj_3R_58()) return true;
    return false;
  }

  final private boolean jj_3R_100() {
    if (jj_3R_101()) return true;
    return false;
  }

  final private boolean jj_3R_92() {
    if (jj_scan_token(STRING_LITERAL)) return true;
    return false;
  }

  final private boolean jj_3R_91() {
    if (jj_scan_token(CHARACTER_LITERAL)) return true;
    return false;
  }

  final private boolean jj_3R_90() {
    if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
    return false;
  }

  final private boolean jj_3R_99() {
    if (jj_3R_100()) return true;
    return false;
  }

  final private boolean jj_3R_89() {
    if (jj_scan_token(INTEGER_LITERAL)) return true;
    return false;
  }

  final private boolean jj_3R_98() {
    if (jj_3R_99()) return true;
    return false;
  }

  final private boolean jj_3R_87() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_89()) {
    jj_scanpos = xsp;
    if (jj_3R_90()) {
    jj_scanpos = xsp;
    if (jj_3R_91()) {
    jj_scanpos = xsp;
    if (jj_3R_92()) {
    jj_scanpos = xsp;
    if (jj_3R_93()) {
    jj_scanpos = xsp;
    if (jj_3R_94()) {
    jj_scanpos = xsp;
    if (jj_3R_95()) {
    jj_scanpos = xsp;
    if (jj_3R_96()) return true;
    }
    }
    }
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_97() {
    if (jj_3R_98()) return true;
    return false;
  }

  final private boolean jj_3R_83() {
    if (jj_scan_token(LBRACE)) return true;
    return false;
  }

  final private boolean jj_3R_62() {
    if (jj_3R_83()) return true;
    return false;
  }

  final private boolean jj_3R_88() {
    if (jj_3R_97()) return true;
    return false;
  }

  final private boolean jj_3R_36() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_62()) {
    jj_scanpos = xsp;
    if (jj_3R_63()) return true;
    }
    return false;
  }

  final private boolean jj_3_17() {
    if (jj_3R_55()) return true;
    if (jj_scan_token(DOT)) return true;
    if (jj_scan_token(CLASS)) return true;
    return false;
  }

  final private boolean jj_3R_86() {
    if (jj_scan_token(IDENTIFIER)) return true;
    return false;
  }

  final private boolean jj_3_19() {
    if (jj_3R_37()) return true;
    return false;
  }

  final private boolean jj_3R_85() {
    if (jj_3R_88()) return true;
    return false;
  }

  final private boolean jj_3R_54() {
    if (jj_scan_token(IDENTIFIER)) return true;
    if (jj_3R_79()) return true;
    return false;
  }

  final private boolean jj_3R_49() {
    if (jj_scan_token(ORASSIGN)) return true;
    return false;
  }

  final private boolean jj_3_18() {
    if (jj_3R_54()) return true;
    return false;
  }

  final private boolean jj_3R_48() {
    if (jj_scan_token(XORASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_127() {
    if (jj_3R_55()) return true;
    return false;
  }

  final private boolean jj_3R_47() {
    if (jj_scan_token(ANDASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_82() {
    if (jj_3R_86()) return true;
    return false;
  }

  final private boolean jj_3R_126() {
    if (jj_3R_52()) return true;
    return false;
  }

  final private boolean jj_3R_78() {
    if (jj_3R_85()) return true;
    return false;
  }

  final private boolean jj_3R_46() {
    if (jj_scan_token(RUNSIGNEDSHIFTASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_125() {
    if (jj_scan_token(LPAREN)) return true;
    return false;
  }

  final private boolean jj_3R_45() {
    if (jj_scan_token(RSIGNEDSHIFTASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_81() {
    if (jj_scan_token(STATIC)) return true;
    return false;
  }

  final private boolean jj_3R_124() {
    if (jj_3R_87()) return true;
    return false;
  }

  final private boolean jj_3R_58() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_81()) jj_scanpos = xsp;
    if (jj_3R_35()) return true;
    if (jj_3R_82()) return true;
    return false;
  }

  final private boolean jj_3R_44() {
    if (jj_scan_token(LSHIFTASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_43() {
    if (jj_scan_token(MINUSASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_42() {
    if (jj_scan_token(PLUSASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_41() {
    if (jj_scan_token(REMASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_40() {
    if (jj_scan_token(SLASHASSIGN)) return true;
    return false;
  }

  final private boolean jj_3R_123() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_124()) {
    jj_scanpos = xsp;
    if (jj_3R_125()) {
    jj_scanpos = xsp;
    if (jj_3R_126()) {
    jj_scanpos = xsp;
    if (jj_3R_127()) {
    jj_scanpos = xsp;
    if (jj_3_18()) {
    jj_scanpos = xsp;
    if (jj_3_19()) return true;
    }
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_39() {
    if (jj_scan_token(STARASSIGN)) return true;
    return false;
  }

  final private boolean jj_3_16() {
    if (jj_scan_token(DOT)) return true;
    if (jj_3R_54()) return true;
    return false;
  }

  final private boolean jj_3R_38() {
    if (jj_scan_token(ASSIGN)) return true;
    return false;
  }

  final private boolean jj_3_15() {
    if (jj_scan_token(LBRACKET)) return true;
    if (jj_3R_53()) return true;
    return false;
  }

  final private boolean jj_3_14() {
    if (jj_scan_token(DOT)) return true;
    if (jj_3R_52()) return true;
    return false;
  }

  final private boolean jj_3_13() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_51()) return true;
    return false;
  }

  final private boolean jj_3_9() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_38()) {
    jj_scanpos = xsp;
    if (jj_3R_39()) {
    jj_scanpos = xsp;
    if (jj_3R_40()) {
    jj_scanpos = xsp;
    if (jj_3R_41()) {
    jj_scanpos = xsp;
    if (jj_3R_42()) {
    jj_scanpos = xsp;
    if (jj_3R_43()) {
    jj_scanpos = xsp;
    if (jj_3R_44()) {
    jj_scanpos = xsp;
    if (jj_3R_45()) {
    jj_scanpos = xsp;
    if (jj_3R_46()) {
    jj_scanpos = xsp;
    if (jj_3R_47()) {
    jj_scanpos = xsp;
    if (jj_3R_48()) {
    jj_scanpos = xsp;
    if (jj_3R_49()) return true;
    }
    }
    }
    }
    }
    }
    }
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_121() {
    if (jj_scan_token(LPAREN)) return true;
    return false;
  }

  final private boolean jj_3R_122() {
    if (jj_3R_123()) return true;
    return false;
  }

  final private boolean jj_3R_120() {
    if (jj_scan_token(LPAREN)) return true;
    return false;
  }

  final private boolean jj_3R_53() {
    if (jj_3R_78()) return true;
    return false;
  }

  final private boolean jj_3R_118() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_120()) {
    jj_scanpos = xsp;
    if (jj_3R_121()) return true;
    }
    return false;
  }

  final private boolean jj_3_12() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_37()) return true;
    if (jj_scan_token(LBRACKET)) return true;
    return false;
  }

  final private boolean jj_3R_119() {
    if (jj_3R_122()) return true;
    return false;
  }

  final private boolean jj_3R_34() {
    if (jj_scan_token(IMPORT)) return true;
    if (jj_scan_token(STATIC)) return true;
    return false;
  }

  final private boolean jj_3_7() {
    if (jj_scan_token(DOT)) return true;
    if (jj_scan_token(IDENTIFIER)) return true;
    return false;
  }

  final private boolean jj_3_10() {
    if (jj_3R_50()) return true;
    return false;
  }

  final private boolean jj_3R_67() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_37()) return true;
    if (jj_scan_token(RPAREN)) return true;
    Token xsp;
    xsp = jj_scanpos;
    if (jj_scan_token(139)) {
    jj_scanpos = xsp;
    if (jj_scan_token(138)) {
    jj_scanpos = xsp;
    if (jj_scan_token(127)) {
    jj_scanpos = xsp;
    if (jj_scan_token(122)) {
    jj_scanpos = xsp;
    if (jj_scan_token(82)) {
    jj_scanpos = xsp;
    if (jj_scan_token(79)) {
    jj_scanpos = xsp;
    if (jj_scan_token(71)) {
    jj_scanpos = xsp;
    if (jj_3R_84()) return true;
    }
    }
    }
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3_8() {
    if (jj_scan_token(LT)) return true;
    if (jj_3R_37()) return true;
    if (jj_scan_token(GT)) return true;
    return false;
  }

  final private boolean jj_3R_66() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_37()) return true;
    if (jj_scan_token(LBRACKET)) return true;
    if (jj_scan_token(RBRACKET)) return true;
    return false;
  }

  final private boolean jj_3_11() {
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_51()) return true;
    return false;
  }

  final private boolean jj_3R_50() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3_11()) {
    jj_scanpos = xsp;
    if (jj_3R_66()) {
    jj_scanpos = xsp;
    if (jj_3R_67()) return true;
    }
    }
    return false;
  }

  final private boolean jj_3R_117() {
    if (jj_3R_119()) return true;
    return false;
  }

  final private boolean jj_3R_116() {
    if (jj_3R_118()) return true;
    return false;
  }

  final private boolean jj_3R_64() {
    if (jj_scan_token(DOT)) return true;
    if (jj_scan_token(IDENTIFIER)) return true;
    return false;
  }

  final private boolean jj_3R_115() {
    if (jj_scan_token(JSP_EMPTY)) return true;
    return false;
  }

  final private boolean jj_3R_65() {
    if (jj_scan_token(LT)) return true;
    if (jj_3R_35()) return true;
    if (jj_scan_token(GT)) return true;
    return false;
  }

  final private boolean jj_3R_114() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_scan_token(138)) {
    jj_scanpos = xsp;
    if (jj_scan_token(108)) return true;
    }
    return false;
  }

  final private boolean jj_3R_113() {
    if (jj_scan_token(TILDE)) return true;
    return false;
  }

  final private boolean jj_3_4() {
    if (jj_scan_token(FOR)) return true;
    if (jj_scan_token(LPAREN)) return true;
    if (jj_3R_35()) return true;
    if (jj_scan_token(IDENTIFIER)) return true;
    if (jj_scan_token(COLON)) return true;
    return false;
  }

  final private boolean jj_3_25() {
    if (jj_scan_token(LBRACKET)) return true;
    if (jj_scan_token(RBRACKET)) return true;
    return false;
  }

  final private boolean jj_3R_37() {
    if (jj_scan_token(IDENTIFIER)) return true;
    Token xsp;
    while (true) {
      xsp = jj_scanpos;
      if (jj_3R_64()) { jj_scanpos = xsp; break; }
    }
    xsp = jj_scanpos;
    if (jj_3R_65()) jj_scanpos = xsp;
    return false;
  }

  final private boolean jj_3R_80() {
    if (jj_3R_35()) return true;
    return false;
  }

  final private boolean jj_3R_111() {
    if (jj_3R_112()) return true;
    return false;
  }

  final private boolean jj_3_24() {
    if (jj_scan_token(LBRACKET)) return true;
    if (jj_3R_53()) return true;
    return false;
  }

  final private boolean jj_3R_112() {
    Token xsp;
    xsp = jj_scanpos;
    if (jj_3R_113()) {
    jj_scanpos = xsp;
    if (jj_3R_114()) {
    jj_scanpos = xsp;
    if (jj_3R_115()) {
    jj_scanpos = xsp;
    if (jj_3R_116()) {
    jj_scanpos = xsp;
    if (jj_3R_117()) return true;
    }
    }
    }
    }
    return false;
  }

  final private boolean jj_3R_110() {
    if (jj_scan_token(DECR)) return true;
    return false;
  }

  final private boolean jj_3R_33() {
    if (jj_scan_token(IDENTIFIER)) return true;
    if (jj_scan_token(COLON)) return true;
    return false;
  }

  public JxpParserTokenManager token_source;
  JavaCharStream jj_input_stream;
  public Token token, jj_nt;
  private int jj_ntk;
  private Token jj_scanpos, jj_lastpos;
  private int jj_la;
  public boolean lookingAhead = false;
  private boolean jj_semLA;
  private int jj_gen;
  final private int[] jj_la1 = new int[103];
  static private int[] jj_la1_0;
  static private int[] jj_la1_1;
  static private int[] jj_la1_2;
  static private int[] jj_la1_3;
  static private int[] jj_la1_4;
  static private int[] jj_la1_5;
  static {
      jj_la1_0();
      jj_la1_1();
      jj_la1_2();
      jj_la1_3();
      jj_la1_4();
      jj_la1_5();
   }
   private static void jj_la1_0() {
      jj_la1_0 = new int[] {0x3ff0,0x3ff0,0x2050,0x1f80,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff0,0x0,0x0,0x0,0x0,0x3ff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
   }
   private static void jj_la1_1() {
      jj_la1_1 = new int[] {0xb0d27000,0xb0d27000,0x0,0x0,0x0,0x0,0x0,0x0,0x90c25000,0x20102000,0x0,0x0,0x0,0x0,0x0,0x0,0x10825000,0x10825000,0x0,0x0,0x0,0x0,0x0,0x10825000,0x0,0x14825000,0x4000000,0x0,0x10825000,0x0,0x10825000,0x10825000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10825000,0x0,0x0,0x10825000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10825000,0x10825000,0x10825000,0x10825000,0x0,0x0,0x0,0x0,0x0,0xb0d27000,0x0,0x0,0x10825000,0x208000,0xb0d27000,0x208000,0x1000000,0x10825000,0x10825000,0x10825000,0x10825000,0x0,0x0,0x0,0x10825000,0x10000,0x8000000,0x0,};
   }
   private static void jj_la1_2() {
      jj_la1_2 = new int[] {0x7acb70aa,0x7acb70aa,0x0,0x0,0x0,0x0,0x0,0x2,0x128120a8,0x684a1000,0x0,0x0,0x4000,0x0,0x0,0x0,0x108020a8,0x108020a8,0x0,0x0,0x0,0x0,0x0,0x10002028,0x0,0x10002028,0x0,0x0,0x10002028,0x0,0x10002028,0x10802028,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x108020a8,0x0,0x0,0x108020a8,0x48080,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x108020a8,0x108020a8,0x108020a8,0x108020a8,0x0,0x0,0x80,0x0,0x0,0x7acb70aa,0x0,0x0,0x108020a8,0x0,0x7acb70aa,0x0,0x0,0x108060a8,0x108020a8,0x108020a8,0x108020a8,0x0,0x0,0x0,0x108020a8,0x0,0x0,0x0,};
   }
   private static void jj_la1_3() {
      jj_la1_3 = new int[] {0xa7a20007,0xa7a20007,0x0,0x0,0x18,0x4000000,0x4000000,0x0,0xa7a20007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7a21807,0xa7a21807,0x0,0x0,0x20000000,0x80000000,0x0,0x4000000,0x0,0x4000000,0x0,0x0,0x4000000,0x0,0x0,0x4000000,0x0,0x0,0x0,0x100,0x100,0x20,0x20,0x0,0x0,0x0,0x240,0x40,0x200,0x240,0x0,0x6480,0x2000,0x80,0x400,0x4000,0x6480,0x0,0x0,0x0,0x0,0x18000,0x8000,0x10000,0x18000,0x87a21807,0x1000,0x1800,0x87a20007,0x87a20007,0x80000000,0x0,0x0,0x80000000,0x0,0x0,0x83a20007,0x3a20007,0x0,0x87a21807,0x87a21807,0x87a21807,0x87a21807,0x0,0x80000000,0x0,0x0,0x0,0xa7a20007,0x0,0x0,0x87a20007,0x0,0xa7a20007,0x0,0x0,0x87a20007,0x87a21807,0x87a20007,0x87a20007,0x0,0x4000000,0x4000000,0x87a21807,0x0,0x0,0x0,};
   }
   private static void jj_la1_4() {
      jj_la1_4 = new int[] {0x300008,0x300008,0x0,0x0,0x0,0x0,0x0,0x0,0x300008,0x0,0x20,0x20,0x0,0x10,0x80,0x2,0xf00c00,0xf00c00,0x10,0x0,0x8,0x0,0x2,0x0,0x10,0x0,0x0,0x2000,0x0,0x2,0x0,0x0,0x0,0x80,0x1000,0x40000,0x40000,0x80000,0x80000,0x8000000,0x10000000,0x4000000,0x24000,0x4000,0x20000,0x24000,0x0,0x18300,0x200,0x100,0x8000,0x10000,0x18300,0xc0000000,0xc0000000,0xc00000,0xc00000,0x23000000,0x2000000,0x20000000,0x23000000,0xf00c00,0x400,0xc00,0x0,0xc00,0x0,0x300000,0x300000,0x0,0x22,0x20,0x0,0x0,0x10,0xf00c00,0xf00c00,0xf00c00,0xf00c00,0x10,0x2,0x0,0x2,0x2,0x300008,0x300080,0x300080,0x300000,0x0,0x300008,0x0,0x0,0x300000,0xf00c00,0x300000,0x300000,0x0,0x0,0x0,0xf00c00,0x0,0x0,0x2000,};
   }
   private static void jj_la1_5() {
      jj_la1_5 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2000,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2000,0x0,0x0,0x0,0x0,0x0,0x0,};
   }
  final private JJCalls[] jj_2_rtns = new JJCalls[27];
  private boolean jj_rescan = false;
  private int jj_gc = 0;

  public JxpParser(java.io.InputStream stream) {
    jj_input_stream = new JavaCharStream(stream, 1, 1);
    token_source = new JxpParserTokenManager(jj_input_stream);
    token = new Token();
    jj_ntk = -1;
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  public void ReInit(java.io.InputStream stream) {
    jj_input_stream.ReInit(stream, 1, 1);
    token_source.ReInit(jj_input_stream);
    token = new Token();
    jj_ntk = -1;
    jjtree.reset();
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  public JxpParser(java.io.Reader stream) {
    jj_input_stream = new JavaCharStream(stream, 1, 1);
    token_source = new JxpParserTokenManager(jj_input_stream);
    token = new Token();
    jj_ntk = -1;
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  public void ReInit(java.io.Reader stream) {
    jj_input_stream.ReInit(stream, 1, 1);
    token_source.ReInit(jj_input_stream);
    token = new Token();
    jj_ntk = -1;
    jjtree.reset();
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  public JxpParser(JxpParserTokenManager tm) {
    token_source = tm;
    token = new Token();
    jj_ntk = -1;
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  public void ReInit(JxpParserTokenManager tm) {
    token_source = tm;
    token = new Token();
    jj_ntk = -1;
    jjtree.reset();
    jj_gen = 0;
    for (int i = 0; i < 103; i++) jj_la1[i] = -1;
    for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
  }

  final private Token jj_consume_token(int kind) throws ParseException {
    Token oldToken;
    if ((oldToken = token).next != null) token = token.next;
    else token = token.next = token_source.getNextToken();
    jj_ntk = -1;
    if (token.kind == kind) {
      jj_gen++;
      if (++jj_gc > 100) {
        jj_gc = 0;
        for (int i = 0; i < jj_2_rtns.length; i++) {
          JJCalls c = jj_2_rtns[i];
          while (c != null) {
            if (c.gen < jj_gen) c.first = null;
            c = c.next;
          }
        }
      }
      return token;
    }
    token = oldToken;
    jj_kind = kind;
    throw generateParseException();
  }

  static private final class LookaheadSuccess extends java.lang.Error { }
  final private LookaheadSuccess jj_ls = new LookaheadSuccess();
  final private boolean jj_scan_token(int kind) {
    if (jj_scanpos == jj_lastpos) {
      jj_la--;
      if (jj_scanpos.next == null) {
        jj_lastpos = jj_scanpos = jj_scanpos.next = token_source.getNextToken();
      } else {
        jj_lastpos = jj_scanpos = jj_scanpos.next;
      }
    } else {
      jj_scanpos = jj_scanpos.next;
    }
    if (jj_rescan) {
      int i = 0; Token tok = token;
      while (tok != null && tok != jj_scanpos) { i++; tok = tok.next; }
      if (tok != null) jj_add_error_token(kind, i);
    }
    if (jj_scanpos.kind != kind) return true;
    if (jj_la == 0 && jj_scanpos == jj_lastpos) throw jj_ls;
    return false;
  }

  final public Token getNextToken() {
    if (token.next != null) token = token.next;
    else token = token.next = token_source.getNextToken();
    jj_ntk = -1;
    jj_gen++;
    return token;
  }

  final public Token getToken(int index) {
    Token t = lookingAhead ? jj_scanpos : token;
    for (int i = 0; i < index; i++) {
      if (t.next != null) t = t.next;
      else t = t.next = token_source.getNextToken();
    }
    return t;
  }

  final private int jj_ntk() {
    if ((jj_nt=token.next) == null)
      return (jj_ntk = (token.next=token_source.getNextToken()).kind);
    else
      return (jj_ntk = jj_nt.kind);
  }

  private java.util.Vector jj_expentries = new java.util.Vector();
  private int[] jj_expentry;
  private int jj_kind = -1;
  private int[] jj_lasttokens = new int[100];
  private int jj_endpos;

  private void jj_add_error_token(int kind, int pos) {
    if (pos >= 100) return;
    if (pos == jj_endpos + 1) {
      jj_lasttokens[jj_endpos++] = kind;
    } else if (jj_endpos != 0) {
      jj_expentry = new int[jj_endpos];
      for (int i = 0; i < jj_endpos; i++) {
        jj_expentry[i] = jj_lasttokens[i];
      }
      boolean exists = false;
      for (java.util.Enumeration e = jj_expentries.elements(); e.hasMoreElements();) {
        int[] oldentry = (int[])(e.nextElement());
        if (oldentry.length == jj_expentry.length) {
          exists = true;
          for (int i = 0; i < jj_expentry.length; i++) {
            if (oldentry[i] != jj_expentry[i]) {
              exists = false;
              break;
            }
          }
          if (exists) break;
        }
      }
      if (!exists) jj_expentries.addElement(jj_expentry);
      if (pos != 0) jj_lasttokens[(jj_endpos = pos) - 1] = kind;
    }
  }

  public ParseException generateParseException() {
    jj_expentries.removeAllElements();
    boolean[] la1tokens = new boolean[174];
    for (int i = 0; i < 174; i++) {
      la1tokens[i] = false;
    }
    if (jj_kind >= 0) {
      la1tokens[jj_kind] = true;
      jj_kind = -1;
    }
    for (int i = 0; i < 103; i++) {
      if (jj_la1[i] == jj_gen) {
        for (int j = 0; j < 32; j++) {
          if ((jj_la1_0[i] & (1<<j)) != 0) {
            la1tokens[j] = true;
          }
          if ((jj_la1_1[i] & (1<<j)) != 0) {
            la1tokens[32+j] = true;
          }
          if ((jj_la1_2[i] & (1<<j)) != 0) {
            la1tokens[64+j] = true;
          }
          if ((jj_la1_3[i] & (1<<j)) != 0) {
            la1tokens[96+j] = true;
          }
          if ((jj_la1_4[i] & (1<<j)) != 0) {
            la1tokens[128+j] = true;
          }
          if ((jj_la1_5[i] & (1<<j)) != 0) {
            la1tokens[160+j] = true;
          }
        }
      }
    }
    for (int i = 0; i < 174; i++) {
      if (la1tokens[i]) {
        jj_expentry = new int[1];
        jj_expentry[0] = i;
        jj_expentries.addElement(jj_expentry);
      }
    }
    jj_endpos = 0;
    jj_rescan_token();
    jj_add_error_token(0, 0);
    int[][] exptokseq = new int[jj_expentries.size()][];
    for (int i = 0; i < jj_expentries.size(); i++) {
      exptokseq[i] = (int[])jj_expentries.elementAt(i);
    }
    return new ParseException(token, exptokseq, tokenImage);
  }

  final public void enable_tracing() {
  }

  final public void disable_tracing() {
  }

  final private void jj_rescan_token() {
    jj_rescan = true;
    for (int i = 0; i < 27; i++) {
      JJCalls p = jj_2_rtns[i];
      do {
        if (p.gen > jj_gen) {
          jj_la = p.arg; jj_lastpos = jj_scanpos = p.first;
          switch (i) {
            case 0: jj_3_1(); break;
            case 1: jj_3_2(); break;
            case 2: jj_3_3(); break;
            case 3: jj_3_4(); break;
            case 4: jj_3_5(); break;
            case 5: jj_3_6(); break;
            case 6: jj_3_7(); break;
            case 7: jj_3_8(); break;
            case 8: jj_3_9(); break;
            case 9: jj_3_10(); break;
            case 10: jj_3_11(); break;
            case 11: jj_3_12(); break;
            case 12: jj_3_13(); break;
            case 13: jj_3_14(); break;
            case 14: jj_3_15(); break;
            case 15: jj_3_16(); break;
            case 16: jj_3_17(); break;
            case 17: jj_3_18(); break;
            case 18: jj_3_19(); break;
            case 19: jj_3_20(); break;
            case 20: jj_3_21(); break;
            case 21: jj_3_22(); break;
            case 22: jj_3_23(); break;
            case 23: jj_3_24(); break;
            case 24: jj_3_25(); break;
            case 25: jj_3_26(); break;
            case 26: jj_3_27(); break;
          }
        }
        p = p.next;
      } while (p != null);
    }
    jj_rescan = false;
  }

  final private void jj_save(int index, int xla) {
    JJCalls p = jj_2_rtns[index];
    while (p.gen > jj_gen) {
      if (p.next == null) { p = p.next = new JJCalls(); break; }
      p = p.next;
    }
    p.gen = jj_gen + xla - jj_la; p.first = token; p.arg = xla;
  }

  static final class JJCalls {
    int gen;
    Token first;
    int arg;
    JJCalls next;
  }

}
