import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import net.sourceforge.phpdt.internal.compiler.ast.*;
import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren;
+import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo;
/**
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
final Token identifier;
Expression expr;
final int pos = SimpleCharStream.getPosition();
- if (jj_2_5(2)) {
+ if (jj_2_7(2)) {
identifier = jj_consume_token(IDENTIFIER);
jj_consume_token(STATICCLASSACCESS);
expr = ClassIdentifier();
ClassAccess.STATIC);
label_19:
while (true) {
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case CLASSACCESS:
- case LPAREN:
- case LBRACKET:
+ if (jj_2_5(2147483647)) {
;
- break;
- default:
- jj_la1[58] = jj_gen;
+ } else {
break label_19;
}
expr = PrimarySuffix(expr);
expr = PrimaryPrefix();
label_20:
while (true) {
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case CLASSACCESS:
- case LPAREN:
- case LBRACKET:
+ if (jj_2_6(2147483647)) {
;
- break;
- default:
- jj_la1[59] = jj_gen;
+ } else {
break label_20;
}
expr = PrimarySuffix(expr);
{if (true) return expr;}
break;
default:
- jj_la1[60] = jj_gen;
+ jj_la1[58] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
+/**
+ * An array declarator.
+ * array(vars)
+ * @return an array
+ */
static final public ArrayInitializer ArrayDeclarator() throws ParseException {
final ArrayVariableDeclaration[] vars;
final int pos = SimpleCharStream.getPosition();
SimpleCharStream.getPosition());}
break;
default:
- jj_la1[61] = jj_gen;
+ jj_la1[59] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
SimpleCharStream.getPosition());
break;
default:
- jj_la1[62] = jj_gen;
+ jj_la1[60] = jj_gen;
;
}
{if (true) return new PrefixedUnaryExpression(expr,
SimpleCharStream.getPosition());}
break;
default:
- jj_la1[63] = jj_gen;
+ jj_la1[61] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return expr;}
break;
default:
- jj_la1[64] = jj_gen;
+ jj_la1[62] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
expression = Type();
break;
default:
- jj_la1[65] = jj_gen;
+ jj_la1[63] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
break;
default:
- jj_la1[66] = jj_gen;
+ jj_la1[64] = jj_gen;
;
}
try {
{if (true) return new ArrayDeclarator(prefix,expression,SimpleCharStream.getPosition());}
break;
default:
- jj_la1[67] = jj_gen;
+ jj_la1[65] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
{if (true) return new NullLiteral(pos-4,pos);}
break;
default:
- jj_la1[68] = jj_gen;
+ jj_la1[66] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
args = ArgumentList();
break;
default:
- jj_la1[69] = jj_gen;
+ jj_la1[67] = jj_gen;
;
}
try {
;
break;
default:
- jj_la1[70] = jj_gen;
+ jj_la1[68] = jj_gen;
break label_21;
}
jj_consume_token(COMMA);
static final public Statement StatementNoBreak() throws ParseException {
final Statement statement;
Token token = null;
- if (jj_2_6(2)) {
+ if (jj_2_8(2)) {
statement = Expression();
try {
jj_consume_token(SEMICOLON);
}
}
{if (true) return statement;}
- } else if (jj_2_7(2)) {
+ } else if (jj_2_9(2)) {
statement = LabeledStatement();
{if (true) return statement;}
} else {
token = jj_consume_token(AT);
break;
default:
- jj_la1[71] = jj_gen;
+ jj_la1[69] = jj_gen;
;
}
statement = IncludeStatement();
statement = GlobalStatement();
{if (true) return statement;}
break;
+ case DEFINE:
+ statement = defineStatement();
+ currentSegment.add((Outlineable)statement);{if (true) return statement;}
+ break;
default:
- jj_la1[72] = jj_gen;
+ jj_la1[70] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
+ static final public Define defineStatement() throws ParseException {
+ final int start = SimpleCharStream.getPosition();
+ Expression defineName,defineValue;
+ jj_consume_token(DEFINE);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', '(' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ try {
+ defineName = Expression();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(COMMA);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ',' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ try {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PRINT:
+ defineValue = PrintExpression();
+ break;
+ default:
+ jj_la1[71] = jj_gen;
+ if (jj_2_10(2147483647)) {
+ defineValue = varAssignation();
+ } else {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case PLUS_PLUS:
+ case MINUS_MINUS:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case DOLLAR_ID:
+ defineValue = ConditionalExpression();
+ break;
+ default:
+ jj_la1[72] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+ }
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ')' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ {if (true) return new Define(currentSegment,
+ defineName,
+ defineValue,
+ start,
+ SimpleCharStream.getPosition());}
+ throw new Error("Missing return statement in function");
+ }
+
/**
* A Normal statement.
*/
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
case GLOBAL:
+ case DEFINE:
case STATIC:
case CONTINUE:
case DO:
static final public Expression[] ForInit() throws ParseException {
Expression[] exprs;
- if (jj_2_8(2147483647)) {
+ if (jj_2_11(2147483647)) {
exprs = LocalVariableDeclaration();
{if (true) return exprs;}
} else {
return retval;
}
- static final private boolean jj_3R_81() {
- if (jj_scan_token(INT)) return true;
+ static final private boolean jj_2_9(int xla) {
+ jj_la = xla; jj_lastpos = jj_scanpos = token;
+ boolean retval = !jj_3_9();
+ jj_save(8, xla);
+ return retval;
+ }
+
+ static final private boolean jj_2_10(int xla) {
+ jj_la = xla; jj_lastpos = jj_scanpos = token;
+ boolean retval = !jj_3_10();
+ jj_save(9, xla);
+ return retval;
+ }
+
+ static final private boolean jj_2_11(int xla) {
+ jj_la = xla; jj_lastpos = jj_scanpos = token;
+ boolean retval = !jj_3_11();
+ jj_save(10, xla);
+ return retval;
+ }
+
+ static final private boolean jj_3R_59() {
+ if (jj_3R_90()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_44() {
- if (jj_scan_token(ARRAY)) return true;
+ static final private boolean jj_3R_58() {
+ if (jj_3R_42()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_80() {
- if (jj_scan_token(FLOAT)) return true;
+ static final private boolean jj_3R_57() {
+ if (jj_3R_89()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_184() {
- if (jj_scan_token(ARRAY)) return true;
+ static final private boolean jj_3R_46() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_56()) {
+ jj_scanpos = xsp;
+ if (jj_3R_57()) {
+ jj_scanpos = xsp;
+ if (jj_3R_58()) {
+ jj_scanpos = xsp;
+ if (jj_3R_59()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_79() {
- if (jj_scan_token(DOUBLE)) return true;
+ static final private boolean jj_3R_56() {
+ if (jj_3R_88()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_85() {
- if (jj_scan_token(LIST)) return true;
+ static final private boolean jj_3R_200() {
+ if (jj_scan_token(MINUS_MINUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(LPAREN)) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_199() {
+ if (jj_scan_token(PLUS_PLUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_192() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_99()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_100()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
- if (jj_scan_token(RPAREN)) return true;
+ if (jj_3R_199()) {
+ jj_scanpos = xsp;
+ if (jj_3R_200()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_175() {
+ if (jj_3R_173()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
xsp = jj_scanpos;
- if (jj_3R_101()) jj_scanpos = xsp;
+ if (jj_3R_192()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_183() {
- if (jj_3R_52()) return true;
+ static final private boolean jj_3R_86() {
+ if (jj_scan_token(OBJECT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_78() {
+ static final private boolean jj_3R_85() {
+ if (jj_scan_token(INTEGER)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_84() {
+ if (jj_scan_token(INT)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_44() {
+ if (jj_scan_token(ARRAY)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_83() {
+ if (jj_scan_token(FLOAT)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_191() {
+ if (jj_scan_token(ARRAY)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_82() {
+ if (jj_scan_token(DOUBLE)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_190() {
+ if (jj_3R_53()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_81() {
if (jj_scan_token(REAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_167() {
+ static final private boolean jj_3R_174() {
if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_183()) {
+ if (jj_3R_190()) {
jj_scanpos = xsp;
- if (jj_3R_184()) return true;
+ if (jj_3R_191()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(RPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_139()) return true;
+ if (jj_3R_146()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_77() {
+ static final private boolean jj_3R_80() {
if (jj_scan_token(BOOLEAN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_76() {
+ static final private boolean jj_3R_79() {
if (jj_scan_token(BOOL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
static final private boolean jj_3R_43() {
- if (jj_3R_52()) return true;
+ if (jj_3R_53()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_75() {
+ static final private boolean jj_3R_78() {
if (jj_scan_token(STRING)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_52() {
+ static final private boolean jj_3R_53() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_75()) {
- jj_scanpos = xsp;
- if (jj_3R_76()) {
- jj_scanpos = xsp;
- if (jj_3R_77()) {
- jj_scanpos = xsp;
if (jj_3R_78()) {
jj_scanpos = xsp;
if (jj_3R_79()) {
jj_scanpos = xsp;
if (jj_3R_82()) {
jj_scanpos = xsp;
- if (jj_3R_83()) return true;
+ if (jj_3R_83()) {
+ jj_scanpos = xsp;
+ if (jj_3R_84()) {
+ jj_scanpos = xsp;
+ if (jj_3R_85()) {
+ jj_scanpos = xsp;
+ if (jj_3R_86()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_84() {
- if (jj_scan_token(PRINT)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3_4() {
if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_165() {
+ static final private boolean jj_3R_91() {
+ if (jj_scan_token(ASSIGN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_46()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_172() {
if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(RPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_164() {
- if (jj_3R_169()) return true;
+ static final private boolean jj_3R_171() {
+ if (jj_3R_176()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_163() {
- if (jj_3R_168()) return true;
+ static final private boolean jj_3R_170() {
+ if (jj_3R_175()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_162() {
- if (jj_3R_167()) return true;
+ static final private boolean jj_3R_169() {
+ if (jj_3R_174()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_158() {
+ static final private boolean jj_3R_165() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_161()) {
+ if (jj_3R_168()) {
jj_scanpos = xsp;
- if (jj_3R_162()) {
+ if (jj_3R_169()) {
jj_scanpos = xsp;
- if (jj_3R_163()) {
+ if (jj_3R_170()) {
jj_scanpos = xsp;
- if (jj_3R_164()) {
+ if (jj_3R_171()) {
jj_scanpos = xsp;
- if (jj_3R_165()) return true;
+ if (jj_3R_172()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_161() {
+ static final private boolean jj_3R_168() {
if (jj_scan_token(BANG)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_139()) return true;
+ if (jj_3R_146()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_160() {
+ static final private boolean jj_3R_167() {
if (jj_scan_token(MINUS_MINUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_159() {
+ static final private boolean jj_3R_166() {
if (jj_scan_token(PLUS_PLUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_157() {
+ static final private boolean jj_3R_164() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_159()) {
+ if (jj_3R_166()) {
jj_scanpos = xsp;
- if (jj_3R_160()) return true;
+ if (jj_3R_167()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_166()) return true;
+ if (jj_3R_173()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_152() {
- if (jj_3R_158()) return true;
+ static final private boolean jj_3_10() {
+ if (jj_3R_42()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_151() {
- if (jj_3R_157()) return true;
+ static final private boolean jj_3R_159() {
+ if (jj_3R_165()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_156() {
+ static final private boolean jj_3R_158() {
+ if (jj_3R_164()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_163() {
if (jj_scan_token(MINUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_155() {
+ static final private boolean jj_3R_60() {
+ if (jj_3R_51()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_91()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_162() {
if (jj_scan_token(PLUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_148() {
+ static final private boolean jj_3R_155() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_150()) {
+ if (jj_3R_157()) {
jj_scanpos = xsp;
- if (jj_3R_151()) {
+ if (jj_3R_158()) {
jj_scanpos = xsp;
- if (jj_3R_152()) return true;
+ if (jj_3R_159()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_150() {
+ static final private boolean jj_3R_157() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_155()) {
+ if (jj_3R_162()) {
jj_scanpos = xsp;
- if (jj_3R_156()) return true;
+ if (jj_3R_163()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_139()) return true;
+ if (jj_3R_146()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_154() {
- if (jj_3R_148()) return true;
+ static final private boolean jj_3R_61() {
+ if (jj_scan_token(COMMA)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_60()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_149() {
+ static final private boolean jj_3R_161() {
+ if (jj_3R_155()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_48() {
+ if (jj_3R_60()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_61()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
+ return false;
+ }
+
+ static final private boolean jj_3R_156() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_153()) {
+ if (jj_3R_160()) {
jj_scanpos = xsp;
- if (jj_3R_154()) return true;
+ if (jj_3R_161()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_153() {
+ static final private boolean jj_3R_160() {
if (jj_scan_token(AT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_149()) return true;
+ if (jj_3R_156()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_144() {
- if (jj_3R_149()) return true;
+ static final private boolean jj_3R_151() {
+ if (jj_3R_156()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_139() {
+ static final private boolean jj_3R_146() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_143()) {
+ if (jj_3R_150()) {
jj_scanpos = xsp;
- if (jj_3R_144()) return true;
+ if (jj_3R_151()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_143() {
+ static final private boolean jj_3R_150() {
if (jj_scan_token(BIT_AND)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_148()) return true;
+ if (jj_3R_155()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_87() {
- if (jj_scan_token(ASSIGN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_147() {
+ static final private boolean jj_3R_154() {
if (jj_scan_token(REMAINDER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_146() {
+ static final private boolean jj_3R_153() {
if (jj_scan_token(SLASH)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_145() {
+ static final private boolean jj_3R_152() {
if (jj_scan_token(STAR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_140() {
+ static final private boolean jj_3R_147() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_145()) {
+ if (jj_3R_152()) {
jj_scanpos = xsp;
- if (jj_3R_146()) {
+ if (jj_3R_153()) {
jj_scanpos = xsp;
- if (jj_3R_147()) return true;
+ if (jj_3R_154()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_139()) return true;
+ if (jj_3R_146()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_134() {
- if (jj_3R_139()) return true;
+ static final private boolean jj_3R_141() {
+ if (jj_3R_146()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_140()) { jj_scanpos = xsp; break; }
+ if (jj_3R_147()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_142() {
- if (jj_scan_token(MINUS)) return true;
+ static final private boolean jj_3_9() {
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_141() {
- if (jj_scan_token(PLUS)) return true;
+ static final private boolean jj_3R_149() {
+ if (jj_scan_token(MINUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_57() {
- if (jj_3R_50()) return true;
+ static final private boolean jj_3R_148() {
+ if (jj_scan_token(PLUS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_87()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_198() {
+ static final private boolean jj_3R_202() {
if (jj_scan_token(COMMA)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_135() {
+ static final private boolean jj_3R_142() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_141()) {
+ if (jj_3R_148()) {
jj_scanpos = xsp;
- if (jj_3R_142()) return true;
+ if (jj_3R_149()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_134()) return true;
+ if (jj_3R_141()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_128() {
- if (jj_3R_134()) return true;
+ static final private boolean jj_3R_135() {
+ if (jj_3R_141()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_135()) { jj_scanpos = xsp; break; }
+ if (jj_3R_142()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_197() {
+ static final private boolean jj_3R_201() {
if (jj_3R_41()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
return false;
}
- static final private boolean jj_3_7() {
+ static final private boolean jj_3_8() {
if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_58() {
- if (jj_scan_token(COMMA)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_57()) return true;
+ if (jj_scan_token(SEMICOLON)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_138() {
+ static final private boolean jj_3R_145() {
if (jj_scan_token(RUNSIGNEDSHIFT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_47() {
- if (jj_3R_57()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_58()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
- return false;
- }
-
- static final private boolean jj_3R_192() {
+ static final private boolean jj_3R_198() {
if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_197()) jj_scanpos = xsp;
+ if (jj_3R_201()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
xsp = jj_scanpos;
- if (jj_3R_198()) jj_scanpos = xsp;
+ if (jj_3R_202()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(RPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_137() {
+ static final private boolean jj_3R_144() {
if (jj_scan_token(RSIGNEDSHIFT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_136() {
+ static final private boolean jj_3R_143() {
if (jj_scan_token(LSHIFT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_129() {
+ static final private boolean jj_3R_136() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_136()) {
+ if (jj_3R_143()) {
jj_scanpos = xsp;
- if (jj_3R_137()) {
+ if (jj_3R_144()) {
jj_scanpos = xsp;
- if (jj_3R_138()) return true;
+ if (jj_3R_145()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_128()) return true;
+ if (jj_3R_135()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_6() {
- if (jj_3R_45()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(SEMICOLON)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_121() {
- if (jj_3R_128()) return true;
+ static final private boolean jj_3R_128() {
+ if (jj_3R_135()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_129()) { jj_scanpos = xsp; break; }
+ if (jj_3R_136()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_201() {
+ static final private boolean jj_3_11() {
+ if (jj_3R_48()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_203() {
if (jj_scan_token(ARRAYASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
static final private boolean jj_3R_41() {
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_201()) jj_scanpos = xsp;
+ if (jj_3R_203()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_133() {
+ static final private boolean jj_3R_47() {
+ if (jj_scan_token(IDENTIFIER)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_scan_token(COLON)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_140() {
if (jj_scan_token(GE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_132() {
+ static final private boolean jj_3R_139() {
if (jj_scan_token(LE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_131() {
+ static final private boolean jj_3R_138() {
if (jj_scan_token(GT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_130() {
+ static final private boolean jj_3R_137() {
if (jj_scan_token(LT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_122() {
+ static final private boolean jj_3R_110() {
+ if (jj_scan_token(COMMA)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_46()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_129() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_130()) {
+ if (jj_3R_137()) {
jj_scanpos = xsp;
- if (jj_3R_131()) {
+ if (jj_3R_138()) {
jj_scanpos = xsp;
- if (jj_3R_132()) {
+ if (jj_3R_139()) {
jj_scanpos = xsp;
- if (jj_3R_133()) return true;
+ if (jj_3R_140()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_121()) return true;
+ if (jj_3R_128()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_119() {
- if (jj_3R_121()) return true;
+ static final private boolean jj_3R_126() {
+ if (jj_3R_128()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_122()) { jj_scanpos = xsp; break; }
+ if (jj_3R_129()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_203() {
- if (jj_scan_token(COMMA)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_202() {
- if (jj_3R_45()) return true;
+ static final private boolean jj_3R_107() {
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_203()) { jj_scanpos = xsp; break; }
+ if (jj_3R_110()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_200() {
- if (jj_3R_202()) return true;
+ static final private boolean jj_3R_100() {
+ if (jj_3R_107()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_127() {
+ static final private boolean jj_3R_97() {
+ if (jj_3R_53()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_134() {
if (jj_scan_token(TRIPLEEQUAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_126() {
+ static final private boolean jj_3R_133() {
if (jj_scan_token(BANGDOUBLEEQUAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_125() {
+ static final private boolean jj_3R_132() {
if (jj_scan_token(NOT_EQUAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_108() {
+ static final private boolean jj_3R_87() {
+ if (jj_scan_token(LPAREN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_100()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_scan_token(RPAREN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_115() {
if (jj_scan_token(LBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(RBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_124() {
+ static final private boolean jj_3R_131() {
if (jj_scan_token(DIF)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_123() {
+ static final private boolean jj_3R_130() {
if (jj_scan_token(EQUAL_EQUAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_91() {
+ static final private boolean jj_3R_95() {
if (jj_scan_token(DOLLAR_ID)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_120() {
+ static final private boolean jj_3R_127() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_123()) {
+ if (jj_3R_130()) {
jj_scanpos = xsp;
- if (jj_3R_124()) {
+ if (jj_3R_131()) {
jj_scanpos = xsp;
- if (jj_3R_125()) {
+ if (jj_3R_132()) {
jj_scanpos = xsp;
- if (jj_3R_126()) {
+ if (jj_3R_133()) {
jj_scanpos = xsp;
- if (jj_3R_127()) return true;
+ if (jj_3R_134()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_119()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_93() {
- if (jj_3R_52()) return true;
+ if (jj_3R_126()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_117() {
- if (jj_3R_119()) return true;
+ static final private boolean jj_3R_124() {
+ if (jj_3R_126()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_120()) { jj_scanpos = xsp; break; }
+ if (jj_3R_127()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_199() {
- if (jj_scan_token(LPAREN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_200()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RPAREN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_90() {
- if (jj_scan_token(DOLLAR)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_59()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_177() {
+ static final private boolean jj_3R_184() {
if (jj_scan_token(NULL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_118() {
- if (jj_scan_token(BIT_AND)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_117()) return true;
+ static final private boolean jj_3R_183() {
+ if (jj_scan_token(FALSE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_176() {
- if (jj_scan_token(FALSE)) return true;
+ static final private boolean jj_3R_94() {
+ if (jj_scan_token(DOLLAR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_62()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_175() {
+ static final private boolean jj_3R_182() {
if (jj_scan_token(TRUE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_115() {
- if (jj_3R_117()) return true;
+ static final private boolean jj_3R_181() {
+ if (jj_scan_token(STRING_LITERAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_118()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
return false;
}
- static final private boolean jj_3R_89() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_180() {
+ if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_108()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_174() {
- if (jj_scan_token(STRING_LITERAL)) return true;
+ static final private boolean jj_3R_125() {
+ if (jj_scan_token(BIT_AND)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_124()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_173() {
- if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
+ static final private boolean jj_3R_179() {
+ if (jj_scan_token(INTEGER_LITERAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_169() {
+ static final private boolean jj_3R_176() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_172()) {
+ if (jj_3R_179()) {
jj_scanpos = xsp;
- if (jj_3R_173()) {
+ if (jj_3R_180()) {
jj_scanpos = xsp;
- if (jj_3R_174()) {
+ if (jj_3R_181()) {
jj_scanpos = xsp;
- if (jj_3R_175()) {
+ if (jj_3R_182()) {
jj_scanpos = xsp;
- if (jj_3R_176()) {
+ if (jj_3R_183()) {
jj_scanpos = xsp;
- if (jj_3R_177()) return true;
+ if (jj_3R_184()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_172() {
- if (jj_scan_token(INTEGER_LITERAL)) return true;
+ static final private boolean jj_3R_122() {
+ if (jj_3R_124()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_125()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_88() {
- if (jj_scan_token(LBRACE)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ static final private boolean jj_3R_93() {
+ if (jj_scan_token(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RBRACE)) return true;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_115()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_96() {
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_59() {
+ static final private boolean jj_3R_63() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_88()) {
- jj_scanpos = xsp;
- if (jj_3R_89()) {
- jj_scanpos = xsp;
- if (jj_3R_90()) {
+ if (jj_3R_96()) {
jj_scanpos = xsp;
- if (jj_3R_91()) return true;
+ if (jj_3R_97()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_116() {
- if (jj_scan_token(XOR)) return true;
+ static final private boolean jj_3R_92() {
+ if (jj_scan_token(LBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_115()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_92() {
- if (jj_3R_45()) return true;
+ if (jj_scan_token(RBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_60() {
+ static final private boolean jj_3R_62() {
Token xsp;
xsp = jj_scanpos;
if (jj_3R_92()) {
jj_scanpos = xsp;
- if (jj_3R_93()) return true;
+ if (jj_3R_93()) {
+ jj_scanpos = xsp;
+ if (jj_3R_94()) {
+ jj_scanpos = xsp;
+ if (jj_3R_95()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_8() {
- if (jj_3R_47()) return true;
+ static final private boolean jj_3R_123() {
+ if (jj_scan_token(XOR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_122()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_113() {
- if (jj_3R_115()) return true;
+ static final private boolean jj_3R_120() {
+ if (jj_3R_122()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_116()) { jj_scanpos = xsp; break; }
+ if (jj_3R_123()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_98() {
+ static final private boolean jj_3R_103() {
if (jj_scan_token(LBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(RBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_46() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_50() {
+ if (jj_scan_token(LBRACKET)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(COLON)) return true;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_63()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_scan_token(RBRACKET)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_95() {
+ static final private boolean jj_3R_99() {
if (jj_scan_token(DOLLAR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_59()) return true;
+ if (jj_3R_62()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_114() {
+ static final private boolean jj_3R_121() {
if (jj_scan_token(BIT_OR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_113()) return true;
+ if (jj_3R_120()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_109() {
- if (jj_3R_113()) return true;
+ static final private boolean jj_3R_116() {
+ if (jj_3R_120()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_114()) { jj_scanpos = xsp; break; }
+ if (jj_3R_121()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_49() {
- if (jj_scan_token(LBRACKET)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ static final private boolean jj_3R_40() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_60()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RBRACKET)) return true;
+ if (jj_3R_49()) {
+ jj_scanpos = xsp;
+ if (jj_3R_50()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_110() {
+ static final private boolean jj_3R_49() {
+ if (jj_scan_token(CLASSACCESS)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_62()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_117() {
if (jj_scan_token(DOT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_109()) return true;
+ if (jj_3R_116()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_94() {
+ static final private boolean jj_3R_98() {
if (jj_scan_token(DOLLAR_ID)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_98()) jj_scanpos = xsp;
+ if (jj_3R_103()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_61() {
+ static final private boolean jj_3R_64() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_94()) {
+ if (jj_3R_98()) {
jj_scanpos = xsp;
- if (jj_3R_95()) return true;
+ if (jj_3R_99()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_104() {
- if (jj_3R_109()) return true;
+ static final private boolean jj_3R_111() {
+ if (jj_3R_116()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_110()) { jj_scanpos = xsp; break; }
+ if (jj_3R_117()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_48() {
- if (jj_scan_token(CLASSACCESS)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_59()) return true;
+ static final private boolean jj_3R_55() {
+ if (jj_3R_40()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_40() {
+ static final private boolean jj_3R_45() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_48()) {
+ if (jj_3R_54()) {
jj_scanpos = xsp;
- if (jj_3R_49()) return true;
+ if (jj_3R_55()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_112() {
- if (jj_scan_token(_ANDL)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_111() {
- if (jj_scan_token(AND_AND)) return true;
+ static final private boolean jj_3R_54() {
+ if (jj_3R_87()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_196() {
- if (jj_3R_40()) return true;
+ static final private boolean jj_3R_119() {
+ if (jj_scan_token(_ANDL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_195() {
- if (jj_3R_199()) return true;
+ static final private boolean jj_3R_118() {
+ if (jj_scan_token(AND_AND)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_188() {
+ static final private boolean jj_3R_112() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_195()) {
+ if (jj_3R_118()) {
jj_scanpos = xsp;
- if (jj_3R_196()) return true;
+ if (jj_3R_119()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_111()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_105() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_111()) {
- jj_scanpos = xsp;
- if (jj_3R_112()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_104()) return true;
+ static final private boolean jj_3R_194() {
+ if (jj_3R_51()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_97() {
+ static final private boolean jj_3R_102() {
if (jj_scan_token(HOOK)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_scan_token(COLON)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_86()) return true;
+ if (jj_3R_90()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_102() {
- if (jj_3R_104()) return true;
+ static final private boolean jj_3R_108() {
+ if (jj_3R_111()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_105()) { jj_scanpos = xsp; break; }
+ if (jj_3R_112()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_187() {
- if (jj_3R_50()) return true;
+ static final private boolean jj_3R_193() {
+ if (jj_scan_token(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_107() {
- if (jj_scan_token(_ORL)) return true;
+ static final private boolean jj_3R_185() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_193()) {
+ jj_scanpos = xsp;
+ if (jj_3R_194()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
static final private boolean jj_3R_106() {
- if (jj_scan_token(OR_OR)) return true;
+ if (jj_scan_token(ASSIGN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_186() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_114() {
+ if (jj_scan_token(_ORL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_178() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_186()) {
- jj_scanpos = xsp;
- if (jj_3R_187()) return true;
+ static final private boolean jj_3R_113() {
+ if (jj_scan_token(OR_OR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_103() {
+ static final private boolean jj_3R_109() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_106()) {
+ if (jj_3R_113()) {
jj_scanpos = xsp;
- if (jj_3R_107()) return true;
+ if (jj_3R_114()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_102()) return true;
+ if (jj_3R_108()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_50() {
- if (jj_3R_61()) return true;
+ static final private boolean jj_3R_51() {
+ if (jj_3R_64()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
return false;
}
- static final private boolean jj_3R_96() {
- if (jj_3R_102()) return true;
+ static final private boolean jj_3R_101() {
+ if (jj_3R_108()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_103()) { jj_scanpos = xsp; break; }
+ if (jj_3R_109()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_86() {
- if (jj_3R_96()) return true;
+ static final private boolean jj_3R_105() {
+ if (jj_scan_token(COMMA)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_51()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_104() {
+ if (jj_3R_51()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_90() {
+ if (jj_3R_101()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_97()) jj_scanpos = xsp;
+ if (jj_3R_102()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_74() {
- if (jj_scan_token(TILDEEQUAL)) return true;
+ static final private boolean jj_3R_197() {
+ if (jj_3R_51()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_191() {
- if (jj_3R_50()) return true;
+ static final private boolean jj_3R_196() {
+ if (jj_scan_token(NEW)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_185()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_73() {
- if (jj_scan_token(DOTASSIGN)) return true;
+ static final private boolean jj_3R_195() {
+ if (jj_scan_token(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_72() {
- if (jj_scan_token(ORASSIGN)) return true;
+ static final private boolean jj_3R_187() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_195()) {
+ jj_scanpos = xsp;
+ if (jj_3R_196()) {
+ jj_scanpos = xsp;
+ if (jj_3R_197()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_71() {
- if (jj_scan_token(XORASSIGN)) return true;
+ static final private boolean jj_3R_77() {
+ if (jj_scan_token(TILDEEQUAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_190() {
- if (jj_scan_token(NEW)) return true;
+ static final private boolean jj_3R_89() {
+ if (jj_scan_token(LIST)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_178()) return true;
+ if (jj_scan_token(LPAREN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_104()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_105()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
+ if (jj_scan_token(RPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ xsp = jj_scanpos;
+ if (jj_3R_106()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_70() {
- if (jj_scan_token(ANDASSIGN)) return true;
+ static final private boolean jj_3R_76() {
+ if (jj_scan_token(DOTASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_69() {
- if (jj_scan_token(RSIGNEDSHIFTASSIGN)) return true;
+ static final private boolean jj_3R_75() {
+ if (jj_scan_token(ORASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_68() {
- if (jj_scan_token(LSHIFTASSIGN)) return true;
+ static final private boolean jj_3R_74() {
+ if (jj_scan_token(XORASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_189() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_73() {
+ if (jj_scan_token(ANDASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_180() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_189()) {
- jj_scanpos = xsp;
- if (jj_3R_190()) {
- jj_scanpos = xsp;
- if (jj_3R_191()) return true;
+ static final private boolean jj_3R_72() {
+ if (jj_scan_token(RSIGNEDSHIFTASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_67() {
+ static final private boolean jj_3R_71() {
+ if (jj_scan_token(LSHIFTASSIGN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_70() {
if (jj_scan_token(MINUSASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_66() {
+ static final private boolean jj_3R_69() {
if (jj_scan_token(PLUSASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_65() {
+ static final private boolean jj_3R_68() {
if (jj_scan_token(REMASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_64() {
+ static final private boolean jj_3R_189() {
+ if (jj_scan_token(ARRAY)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_198()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_67() {
if (jj_scan_token(SLASHASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_63() {
+ static final private boolean jj_3R_66() {
if (jj_scan_token(STARASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_51() {
+ static final private boolean jj_3R_88() {
+ if (jj_scan_token(PRINT)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_46()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_65() {
+ if (jj_scan_token(ASSIGN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_52() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_62()) {
- jj_scanpos = xsp;
- if (jj_3R_63()) {
- jj_scanpos = xsp;
- if (jj_3R_64()) {
- jj_scanpos = xsp;
if (jj_3R_65()) {
jj_scanpos = xsp;
if (jj_3R_66()) {
jj_scanpos = xsp;
if (jj_3R_73()) {
jj_scanpos = xsp;
- if (jj_3R_74()) return true;
+ if (jj_3R_74()) {
+ jj_scanpos = xsp;
+ if (jj_3R_75()) {
+ jj_scanpos = xsp;
+ if (jj_3R_76()) {
+ jj_scanpos = xsp;
+ if (jj_3R_77()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_62() {
- if (jj_scan_token(ASSIGN)) return true;
+ static final private boolean jj_3_6() {
+ if (jj_3R_45()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_182() {
- if (jj_scan_token(ARRAY)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_192()) return true;
+ static final private boolean jj_3R_178() {
+ if (jj_3R_189()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_171() {
- if (jj_3R_182()) return true;
+ static final private boolean jj_3_5() {
+ if (jj_3R_45()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_181() {
- if (jj_3R_188()) return true;
+ static final private boolean jj_3R_188() {
+ if (jj_3R_45()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_170() {
- if (jj_3R_180()) return true;
+ static final private boolean jj_3R_177() {
+ if (jj_3R_187()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_181()) { jj_scanpos = xsp; break; }
+ if (jj_3R_188()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_101() {
- if (jj_scan_token(ASSIGN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ static final private boolean jj_3R_186() {
if (jj_3R_45()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_179() {
- if (jj_3R_188()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_42() {
- if (jj_3R_50()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_3R_51()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_45()) return true;
+ if (jj_3R_52()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3_3() {
- if (jj_3R_42()) return true;
+ if (jj_3R_46()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_5() {
- if (jj_scan_token(IDENTIFIER)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(STATICCLASSACCESS)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_178()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_179()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
- return false;
- }
-
- static final private boolean jj_3R_166() {
+ static final private boolean jj_3R_173() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_5()) {
+ if (jj_3_7()) {
jj_scanpos = xsp;
- if (jj_3R_170()) {
+ if (jj_3R_177()) {
jj_scanpos = xsp;
- if (jj_3R_171()) return true;
+ if (jj_3R_178()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_56() {
- if (jj_3R_86()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_55() {
+ static final private boolean jj_3_3() {
if (jj_3R_42()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_54() {
- if (jj_3R_85()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_100() {
- if (jj_scan_token(COMMA)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_50()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_45() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_53()) {
- jj_scanpos = xsp;
- if (jj_3R_54()) {
- jj_scanpos = xsp;
- if (jj_3R_55()) {
- jj_scanpos = xsp;
- if (jj_3R_56()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_53() {
- if (jj_3R_84()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_194() {
- if (jj_scan_token(MINUS_MINUS)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_193() {
- if (jj_scan_token(PLUS_PLUS)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_185() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_193()) {
- jj_scanpos = xsp;
- if (jj_3R_194()) return true;
+ static final private boolean jj_3_7() {
+ if (jj_scan_token(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_99() {
- if (jj_3R_50()) return true;
+ if (jj_scan_token(STATICCLASSACCESS)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_168() {
- if (jj_3R_166()) return true;
+ if (jj_3R_185()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_185()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_83() {
- if (jj_scan_token(OBJECT)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_82() {
- if (jj_scan_token(INTEGER)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_186()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
jj_la1_4();
}
private static void jj_la1_0() {
- jj_la1_0 = new int[] {0xf960001e,0x6,0x6,0xf960001e,0x0,0xf9600000,0x0,0xc00000,0xc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000000,0x0,0x68000000,0x0,0x0,0x0,0x0,0x0,0x0,0x60000000,0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000000,0x8000000,0x0,0x8000000,0x0,0x0,0x8000000,0x8000000,0x0,0x0,0x0,0x0,0x8000000,0x0,0x8000000,0x0,0x0,0x68000000,0x68000000,0x0,0x0,0x68000000,0x0,0x0,0x89000000,0xf9000000,0x8,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9600010,0xf9600010,0xf9600000,0xe9600000,0x0,0x0,0x0,0x0,0x8000000,0x0,0x0,0x0,0xe9600010,0xe9600010,0x10000000,0x0,0x68000000,0xf9000010,0xf9000010,0x2000000,0x4000000,0xf9000010,0x2000000,0x4000000,0xf9000010,0xf9000010,0xf9000010,0xf9000010,0xf9000010,0xf9000000,0xf9000000,0x8000000,0x68000000,0x8000000,0xf9000000,0xf9000000,0x8000000,0x0,0x68000000,0x68000000,};
+ jj_la1_0 = new int[] {0xf960001e,0x6,0x6,0xf960001e,0x0,0xf9600000,0x0,0xc00000,0xc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000000,0x0,0x68000000,0x0,0x0,0x0,0x0,0x0,0x0,0x60000000,0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000000,0x8000000,0x0,0x8000000,0x0,0x0,0x8000000,0x8000000,0x0,0x0,0x8000000,0x0,0x8000000,0x0,0x0,0x68000000,0x68000000,0x0,0x0,0x68000000,0x0,0x0,0x89000000,0x40000000,0x8000000,0xf9000000,0x8,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9600010,0xf9600010,0xf9600000,0xe9600000,0x0,0x0,0x0,0x0,0x8000000,0x0,0x0,0x0,0xe9600010,0xe9600010,0x10000000,0x0,0x68000000,0xf9000010,0xf9000010,0x2000000,0x4000000,0xf9000010,0x2000000,0x4000000,0xf9000010,0xf9000010,0xf9000010,0xf9000010,0xf9000010,0xf9000000,0xf9000000,0x8000000,0x68000000,0x8000000,0xf9000000,0xf9000000,0x8000000,0x0,0x68000000,0x68000000,};
}
private static void jj_la1_1() {
- jj_la1_1 = new int[] {0x43aea83f,0x0,0x0,0x43aea83f,0x0,0x43aea83f,0x4000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1840000,0x100,0x1860000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1860000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1860000,0x1860000,0x0,0x1860000,0x0,0x0,0x1860000,0x0,0x0,0x0,0x40,0x40,0x20000,0x20000,0x20000,0x0,0x40,0x1860000,0x1860000,0x40,0x1840000,0x1860000,0x0,0x0,0x422aa83f,0x43aea83f,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x43aea83f,0x43aea83f,0x43aea83f,0x43aea83f,0x0,0x0,0x0,0x0,0x20000,0x0,0x1200,0x1200,0x43aea83f,0x43aea83f,0x0,0x1200,0x1860000,0x43aea83f,0x43aea83f,0x0,0x0,0x43aea83f,0x0,0x0,0x43aea83f,0x43aea83f,0x43aea83f,0x43aea83f,0x43aea83f,0x43aea83f,0x43aea83f,0x20000,0x1860000,0x20000,0x43aea83f,0x43aea83f,0x20000,0x0,0x1860000,0x1860000,};
+ jj_la1_1 = new int[] {0x875d507f,0x0,0x0,0x875d507f,0x0,0x875d507f,0x8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3080000,0x200,0x30c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30c0000,0x30c0000,0x0,0x30c0000,0x0,0x0,0x30c0000,0x0,0x0,0x0,0x40000,0x40000,0x40000,0x0,0x80,0x30c0000,0x30c0000,0x80,0x3080000,0x30c0000,0x0,0x0,0x8455507f,0x0,0x30c0000,0x875d507f,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x875d507f,0x875d507f,0x875d507f,0x875d507f,0x0,0x0,0x0,0x0,0x40000,0x0,0x2400,0x2400,0x875d507f,0x875d507f,0x0,0x2400,0x30c0000,0x875d507f,0x875d507f,0x0,0x0,0x875d507f,0x0,0x0,0x875d507f,0x875d507f,0x875d507f,0x875d507f,0x875d507f,0x875d507f,0x875d507f,0x40000,0x30c0000,0x40000,0x875d507f,0x875d507f,0x40000,0x0,0x30c0000,0x30c0000,};
}
private static void jj_la1_2() {
- jj_la1_2 = new int[] {0x9e0e00,0x0,0x0,0x9e0e00,0x0,0x9e0e00,0x0,0x0,0x0,0x0,0x0,0x0,0x400,0x0,0x400,0x0,0x0,0x180000,0x0,0x9e0e00,0x0,0x800000,0x0,0x800400,0x800000,0x1ff,0x0,0x9e0e00,0x0,0x2000,0x40008000,0x40008000,0x80010000,0x80010000,0x0,0x1000000,0x2000000,0x800000,0x0,0x0,0x0,0x0,0x38000000,0x38000000,0x180000,0x180000,0x4600000,0x4600000,0x9e0e00,0x1e0e00,0x180000,0x1e0c00,0x60000,0x800,0x400,0x1ff,0x60000,0x60000,0x0,0x0,0x400,0x400,0x400,0x400,0x0,0x9e0fff,0x9e0fff,0x0,0x0,0x9e0e00,0x0,0x200,0x60600,0x9e0e00,0x0,0x0,0x0,0x400,0x0,0x0,0x0,0x0,0x0,0x9e0e00,0x9e0e00,0x9e0e00,0x9e0e00,0x0,0x0,0x60000,0x60000,0x60400,0x4000,0x0,0x0,0x9e0e00,0x9e0e00,0x0,0x0,0x9e0e00,0x9e0e00,0x9e0e00,0x0,0x0,0x9e0e00,0x0,0x0,0x9e4e00,0x9e0e00,0x9e0e00,0x9e0e00,0x9e0e00,0x9e0e00,0x9e4e00,0x60400,0x9e0e00,0x60400,0x9e0e00,0x9e4e00,0x60400,0x0,0x9e0e00,0x9e0e00,};
+ jj_la1_2 = new int[] {0x13c1c00,0x0,0x0,0x13c1c00,0x0,0x13c1c00,0x0,0x0,0x0,0x0,0x0,0x0,0x800,0x0,0x800,0x0,0x0,0x300000,0x0,0x13c1c00,0x0,0x1000000,0x0,0x1000800,0x1000000,0x3fe,0x0,0x13c1c00,0x0,0x4000,0x80010000,0x80010000,0x20000,0x20000,0x0,0x2000000,0x4000000,0x1000000,0x0,0x0,0x0,0x0,0x70000000,0x70000000,0x300000,0x300000,0x8c00000,0x8c00000,0x13c1c00,0x3c1c00,0x300000,0x3c1800,0xc0000,0x1000,0x800,0x3fe,0xc0000,0xc0000,0x800,0x800,0x800,0x800,0x0,0x13c1ffe,0x13c1ffe,0x0,0x0,0x13c1c00,0x0,0x400,0xc0c00,0x0,0x13c1c00,0x13c1c00,0x0,0x0,0x0,0x800,0x0,0x0,0x0,0x0,0x0,0x13c1c00,0x13c1c00,0x13c1c00,0x13c1c00,0x0,0x0,0xc0000,0xc0000,0xc0800,0x8000,0x0,0x0,0x13c1c00,0x13c1c00,0x0,0x0,0x13c1c00,0x13c1c00,0x13c1c00,0x0,0x0,0x13c1c00,0x0,0x0,0x13c9c00,0x13c1c00,0x13c1c00,0x13c1c00,0x13c1c00,0x13c1c00,0x13c9c00,0xc0800,0x13c1c00,0xc0800,0x13c1c00,0x13c9c00,0xc0800,0x0,0x13c1c00,0x13c1c00,};
}
private static void jj_la1_3() {
- jj_la1_3 = new int[] {0x114451,0x0,0x0,0x114451,0x100000,0x114451,0x0,0x0,0x0,0x200000,0x0,0x10000,0x0,0x10000,0x10400,0x11,0x11,0x451,0x0,0x4451,0x200000,0x0,0x200000,0x0,0x0,0x0,0x0,0x4451,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x0,0x0,0xf2000000,0xf2000000,0xd800000,0xd800000,0x0,0x0,0x0,0x0,0x0,0x0,0x4451,0x4451,0x0,0x4451,0x0,0x0,0x4451,0x0,0x0,0x0,0x44000,0x44000,0x400,0x400,0x400,0x400,0x44000,0x4451,0x4451,0x40000,0x51,0x4451,0x200000,0x0,0x110400,0x114451,0x0,0x0,0x0,0x0,0x200000,0x0,0x200000,0x200000,0x200000,0x114451,0x114451,0x114451,0x114451,0x200000,0x0,0x0,0x0,0x400,0x10000,0x0,0x0,0x114451,0x114451,0x0,0x0,0x4451,0x114451,0x114451,0x0,0x0,0x114451,0x0,0x0,0x114451,0x114451,0x114451,0x114451,0x114451,0x114451,0x114451,0x400,0x4451,0x400,0x114451,0x114451,0x400,0x200000,0x4451,0x4451,};
+ jj_la1_3 = new int[] {0x2288a2,0x0,0x0,0x2288a2,0x200000,0x2288a2,0x0,0x0,0x0,0x400000,0x0,0x20000,0x0,0x20000,0x20800,0x22,0x22,0x8a2,0x0,0x88a2,0x400000,0x0,0x400000,0x0,0x0,0x0,0x0,0x88a2,0x0,0x0,0x0,0x0,0x1,0x1,0x800000,0x0,0x0,0x0,0xe4000000,0xe4000000,0x1b000000,0x1b000000,0x0,0x0,0x0,0x0,0x0,0x0,0x88a2,0x88a2,0x0,0x88a2,0x0,0x0,0x88a2,0x0,0x0,0x0,0x800,0x800,0x800,0x800,0x88000,0x88a2,0x88a2,0x80000,0xa2,0x88a2,0x400000,0x0,0x220800,0x0,0x88a2,0x2288a2,0x0,0x0,0x0,0x0,0x400000,0x0,0x400000,0x400000,0x400000,0x2288a2,0x2288a2,0x2288a2,0x2288a2,0x400000,0x0,0x0,0x0,0x800,0x20000,0x0,0x0,0x2288a2,0x2288a2,0x0,0x0,0x88a2,0x2288a2,0x2288a2,0x0,0x0,0x2288a2,0x0,0x0,0x2288a2,0x2288a2,0x2288a2,0x2288a2,0x2288a2,0x2288a2,0x2288a2,0x800,0x88a2,0x800,0x2288a2,0x2288a2,0x800,0x400000,0x88a2,0x88a2,};
}
private static void jj_la1_4() {
- jj_la1_4 = new int[] {0x2000,0x0,0x0,0x2000,0x0,0x2000,0x0,0x0,0x0,0x0,0x1,0x0,0x2000,0x0,0x2000,0x0,0x0,0x0,0x0,0x2000,0x0,0x0,0x0,0x2000,0x0,0x0,0x0,0x2000,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2000,0x2000,0x0,0x2000,0x0,0x0,0x2000,0x0,0x0,0x0,0x0,0x0,0x2000,0x2000,0x2000,0x2000,0x0,0x2000,0x2000,0x0,0x0,0x2000,0x0,0x0,0x2000,0x2000,0x0,0x0,0x0,0x2000,0x0,0x1,0x0,0x0,0x0,0x2000,0x2000,0x2000,0x2000,0x0,0x1,0x1fff,0x1fff,0x2000,0x0,0x0,0x0,0x2000,0x2000,0x0,0x0,0x2000,0x2000,0x2000,0x0,0x0,0x2000,0x0,0x0,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x2000,0x0,0x2000,0x2000,};
+ jj_la1_4 = new int[] {0x4000,0x0,0x0,0x4000,0x0,0x4000,0x0,0x0,0x0,0x0,0x2,0x0,0x4000,0x0,0x4000,0x0,0x0,0x0,0x0,0x4000,0x0,0x0,0x0,0x4000,0x0,0x0,0x0,0x4000,0x3ffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4000,0x4000,0x0,0x4000,0x0,0x0,0x4000,0x0,0x0,0x0,0x4000,0x4000,0x4000,0x4000,0x0,0x4000,0x4000,0x0,0x0,0x4000,0x0,0x0,0x4000,0x0,0x4000,0x4000,0x0,0x0,0x0,0x4000,0x0,0x2,0x0,0x0,0x0,0x4000,0x4000,0x4000,0x4000,0x0,0x2,0x3ffe,0x3ffe,0x4000,0x0,0x0,0x0,0x4000,0x4000,0x0,0x0,0x4000,0x4000,0x4000,0x0,0x0,0x4000,0x0,0x0,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x4000,0x0,0x4000,0x4000,};
}
- static final private JJCalls[] jj_2_rtns = new JJCalls[8];
+ static final private JJCalls[] jj_2_rtns = new JJCalls[11];
static private boolean jj_rescan = false;
static private int jj_gc = 0;
static public ParseException generateParseException() {
jj_expentries.removeAllElements();
- boolean[] la1tokens = new boolean[142];
- for (int i = 0; i < 142; i++) {
+ boolean[] la1tokens = new boolean[143];
+ for (int i = 0; i < 143; i++) {
la1tokens[i] = false;
}
if (jj_kind >= 0) {
}
}
}
- for (int i = 0; i < 142; i++) {
+ for (int i = 0; i < 143; i++) {
if (la1tokens[i]) {
jj_expentry = new int[1];
jj_expentry[0] = i;
static final private void jj_rescan_token() {
jj_rescan = true;
- for (int i = 0; i < 8; i++) {
+ for (int i = 0; i < 11; i++) {
JJCalls p = jj_2_rtns[i];
do {
if (p.gen > jj_gen) {
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;
}
}
p = p.next;
import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import net.sourceforge.phpdt.internal.compiler.ast.*;
import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren;
+import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo;
public class PHPParserTokenManager implements PHPParserConstants
switch (pos)
{
case 0:
- if ((active0 & 0x4800L) != 0L || (active1 & 0x400000L) != 0L || (active2 & 0x10L) != 0L)
+ if ((active0 & 0x4800L) != 0L || (active1 & 0x800000L) != 0L || (active2 & 0x20L) != 0L)
return 2;
- if ((active1 & 0x400L) != 0L)
+ if ((active1 & 0x800L) != 0L)
return 16;
- if ((active1 & 0x40000000000000L) != 0L || (active2 & 0x100L) != 0L)
+ if ((active1 & 0x80000000000000L) != 0L || (active2 & 0x200L) != 0L)
return 8;
- if ((active0 & 0xfffffe3fffe00000L) != 0L || (active1 & 0xc00001ffL) != 0L)
+ if ((active0 & 0xfffffc7fffe00000L) != 0L || (active1 & 0x1800003ffL) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
return 14;
}
return -1;
case 1:
if ((active0 & 0x4000L) != 0L)
return 0;
- if ((active0 & 0x7fffde3ffee00000L) != 0L || (active1 & 0x800001dfL) != 0L)
+ if ((active0 & 0x400001000000L) != 0L || (active1 & 0x80000041L) != 0L)
+ return 14;
+ if ((active0 & 0xffffbc7ffee00000L) != 0L || (active1 & 0x1000003beL) != 0L)
{
if (jjmatchedPos != 1)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 1;
}
return 14;
}
- if ((active0 & 0x8000200001000000L) != 0L || (active1 & 0x40000020L) != 0L)
- return 14;
return -1;
case 2:
- if ((active0 & 0x4002800000800000L) != 0L || (active1 & 0x80000180L) != 0L)
+ if ((active0 & 0x8005000000800000L) != 0L || (active1 & 0x100000300L) != 0L)
return 14;
- if ((active0 & 0x3ffd5e3ffe600000L) != 0L || (active1 & 0x7fL) != 0L)
+ if ((active0 & 0x7ffabc7ffe600000L) != 0L || (active1 & 0xfeL) != 0L)
{
if (jjmatchedPos != 2)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 2;
}
return 14;
}
return -1;
case 3:
- if ((active0 & 0xc50200a6000000L) != 0L || (active1 & 0x1cL) != 0L)
+ if ((active0 & 0x18a0400a6000000L) != 0L || (active1 & 0x38L) != 0L)
return 14;
- if ((active0 & 0x7f385c3f58600000L) != 0L || (active1 & 0x163L) != 0L)
+ if ((active0 & 0xfe70b87f58600000L) != 0L || (active1 & 0x2c6L) != 0L)
{
if (jjmatchedPos != 3)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 3;
}
return 14;
}
return -1;
case 4:
- if ((active0 & 0x1310040058200000L) != 0L || (active1 & 0x40L) != 0L)
+ if ((active0 & 0x2620080058200000L) != 0L || (active1 & 0x80L) != 0L)
return 14;
- if ((active0 & 0x6c28583f02400000L) != 0L || (active1 & 0x12bL) != 0L)
+ if ((active0 & 0xd850b07f02400000L) != 0L || (active1 & 0x256L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 4;
return 14;
}
return -1;
case 5:
- if ((active0 & 0x2028003002000000L) != 0L || (active1 & 0x23L) != 0L)
+ if ((active0 & 0x4050007002000000L) != 0L || (active1 & 0x46L) != 0L)
return 14;
- if ((active0 & 0x4c00580f00400000L) != 0L || (active1 & 0x108L) != 0L)
+ if ((active0 & 0x9800b00f00400000L) != 0L || (active1 & 0x210L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 5;
return 14;
}
return -1;
case 6:
- if ((active0 & 0x4000500f00000000L) != 0L || (active1 & 0x108L) != 0L)
+ if ((active0 & 0x8000a00f00000000L) != 0L || (active1 & 0x210L) != 0L)
return 14;
- if ((active0 & 0xc00080000400000L) != 0L)
+ if ((active0 & 0x1800100000400000L) != 0L)
{
if (jjmatchedPos != 6)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 6;
}
return 14;
}
return -1;
case 7:
- if ((active0 & 0x400080000400000L) != 0L)
+ if ((active0 & 0x800100000400000L) != 0L)
return 14;
- if ((active0 & 0x800000c00000000L) != 0L)
+ if ((active0 & 0x1000000c00000000L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 7;
return 14;
}
return -1;
case 8:
- if ((active0 & 0x800000000000000L) != 0L)
- return 14;
if ((active0 & 0xc00000000L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 8;
return 14;
}
+ if ((active0 & 0x1000000000000000L) != 0L)
+ return 14;
return -1;
case 9:
if ((active0 & 0xc00000000L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 9;
return 14;
}
case 10:
if ((active0 & 0xc00000000L) != 0L)
{
- jjmatchedKind = 106;
+ jjmatchedKind = 107;
jjmatchedPos = 10;
return 14;
}
switch(curChar)
{
case 33:
- jjmatchedKind = 75;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x5000000000000000L, 0x0L);
+ jjmatchedKind = 76;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0xa000000000000000L, 0x0L);
case 35:
return jjStopAtPos(0, 12);
case 36:
- return jjStartNfaWithStates_1(0, 74, 16);
+ return jjStartNfaWithStates_1(0, 75, 16);
case 37:
- jjmatchedKind = 90;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x200L);
+ jjmatchedKind = 91;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x400L);
case 38:
- jjmatchedKind = 87;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x10000L, 0x20L);
+ jjmatchedKind = 88;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x20000L, 0x40L);
case 40:
- return jjStopAtPos(0, 110);
- case 41:
return jjStopAtPos(0, 111);
+ case 41:
+ return jjStopAtPos(0, 112);
case 42:
- jjmatchedKind = 85;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x8L);
+ jjmatchedKind = 86;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x10L);
case 43:
- jjmatchedKind = 83;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x20000L, 0x2L);
+ jjmatchedKind = 84;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x40000L, 0x4L);
case 44:
- return jjStopAtPos(0, 117);
+ return jjStopAtPos(0, 118);
case 45:
- jjmatchedKind = 84;
- return jjMoveStringLiteralDfa1_1(0x4000000000L, 0x40000L, 0x4L);
+ jjmatchedKind = 85;
+ return jjMoveStringLiteralDfa1_1(0x8000000000L, 0x80000L, 0x8L);
case 46:
- jjmatchedKind = 118;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x100L);
+ jjmatchedKind = 119;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x200L);
case 47:
- jjmatchedKind = 86;
- return jjMoveStringLiteralDfa1_1(0x4800L, 0x0L, 0x10L);
+ jjmatchedKind = 87;
+ return jjMoveStringLiteralDfa1_1(0x4800L, 0x0L, 0x20L);
case 58:
- jjmatchedKind = 78;
- return jjMoveStringLiteralDfa1_1(0x8000000000L, 0x0L, 0x0L);
+ jjmatchedKind = 79;
+ return jjMoveStringLiteralDfa1_1(0x10000000000L, 0x0L, 0x0L);
case 59:
- return jjStopAtPos(0, 116);
+ return jjStopAtPos(0, 117);
case 60:
- jjmatchedKind = 120;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x2400000008000000L, 0x800L);
+ jjmatchedKind = 121;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x4800000010000000L, 0x1000L);
case 61:
- jjmatchedKind = 128;
- return jjMoveStringLiteralDfa1_1(0x10000000000L, 0x8200000000000000L, 0x0L);
+ jjmatchedKind = 129;
+ return jjMoveStringLiteralDfa1_1(0x20000000000L, 0x400000000000000L, 0x1L);
case 62:
- jjmatchedKind = 119;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x800000030000000L, 0x1000L);
+ jjmatchedKind = 120;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x1000000060000000L, 0x2000L);
case 63:
- jjmatchedKind = 77;
+ jjmatchedKind = 78;
return jjMoveStringLiteralDfa1_1(0x10L, 0x0L, 0x0L);
case 64:
- return jjStopAtPos(0, 73);
+ return jjStopAtPos(0, 74);
case 91:
- return jjStopAtPos(0, 114);
- case 93:
return jjStopAtPos(0, 115);
+ case 93:
+ return jjStopAtPos(0, 116);
case 94:
- jjmatchedKind = 89;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x80L);
+ jjmatchedKind = 90;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x100L);
case 65:
case 97:
- return jjMoveStringLiteralDfa1_1(0x8000000008000000L, 0x80000000L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x8000000L, 0x100000001L, 0x0L);
case 66:
case 98:
- return jjMoveStringLiteralDfa1_1(0x10000000L, 0xcL, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x10000000L, 0x18L, 0x0L);
case 67:
case 99:
- return jjMoveStringLiteralDfa1_1(0xe0000200000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x1c0000200000L, 0x0L, 0x0L);
case 68:
case 100:
- return jjMoveStringLiteralDfa1_1(0x300000000000L, 0x20L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x602000000000L, 0x40L, 0x0L);
case 69:
case 101:
- return jjMoveStringLiteralDfa1_1(0x3c00400086000000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x7800800086000000L, 0x0L, 0x0L);
case 70:
case 102:
- return jjMoveStringLiteralDfa1_1(0x4100800000400000L, 0x40L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x8201000000400000L, 0x80L, 0x0L);
case 71:
case 103:
- return jjMoveStringLiteralDfa1_1(0x1001000000000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x2001000000000L, 0x0L, 0x0L);
case 73:
case 105:
- return jjMoveStringLiteralDfa1_1(0x501000000L, 0x180L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x501000000L, 0x300L, 0x0L);
case 76:
case 108:
return jjMoveStringLiteralDfa1_1(0x20000000L, 0x0L, 0x0L);
case 78:
case 110:
- return jjMoveStringLiteralDfa1_1(0x6000000000000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0xc000000000000L, 0x0L, 0x0L);
case 79:
case 111:
- return jjMoveStringLiteralDfa1_1(0x0L, 0x40000002L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x80000004L, 0x0L);
case 80:
case 112:
return jjMoveStringLiteralDfa1_1(0x40000000L, 0x0L, 0x0L);
case 82:
case 114:
- return jjMoveStringLiteralDfa1_1(0x8000a00000000L, 0x10L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x10000a00000000L, 0x20L, 0x0L);
case 83:
case 115:
- return jjMoveStringLiteralDfa1_1(0x30002000000000L, 0x1L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x60004000000000L, 0x2L, 0x0L);
case 84:
case 116:
- return jjMoveStringLiteralDfa1_1(0xc0000000000000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x180000000000000L, 0x0L, 0x0L);
case 86:
case 118:
return jjMoveStringLiteralDfa1_1(0x800000L, 0x0L, 0x0L);
case 87:
case 119:
- return jjMoveStringLiteralDfa1_1(0x200000000000000L, 0x0L, 0x0L);
+ return jjMoveStringLiteralDfa1_1(0x400000000000000L, 0x0L, 0x0L);
case 123:
- return jjStopAtPos(0, 112);
+ return jjStopAtPos(0, 113);
case 124:
- jjmatchedKind = 88;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x8000L, 0x40L);
+ jjmatchedKind = 89;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x10000L, 0x80L);
case 125:
- return jjStopAtPos(0, 113);
+ return jjStopAtPos(0, 114);
case 126:
- jjmatchedKind = 76;
- return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x400L);
+ jjmatchedKind = 77;
+ return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x800L);
default :
return jjMoveNfa_1(3, 0);
}
switch(curChar)
{
case 38:
- if ((active1 & 0x10000L) != 0L)
- return jjStopAtPos(1, 80);
+ if ((active1 & 0x20000L) != 0L)
+ return jjStopAtPos(1, 81);
break;
case 42:
if ((active0 & 0x4000L) != 0L)
return jjStartNfaWithStates_1(1, 14, 0);
break;
case 43:
- if ((active1 & 0x20000L) != 0L)
- return jjStopAtPos(1, 81);
- break;
- case 45:
if ((active1 & 0x40000L) != 0L)
return jjStopAtPos(1, 82);
break;
+ case 45:
+ if ((active1 & 0x80000L) != 0L)
+ return jjStopAtPos(1, 83);
+ break;
case 47:
if ((active0 & 0x800L) != 0L)
return jjStopAtPos(1, 11);
break;
case 58:
- if ((active0 & 0x8000000000L) != 0L)
- return jjStopAtPos(1, 39);
+ if ((active0 & 0x10000000000L) != 0L)
+ return jjStopAtPos(1, 40);
break;
case 60:
- if ((active1 & 0x8000000L) != 0L)
+ if ((active1 & 0x10000000L) != 0L)
{
- jjmatchedKind = 91;
+ jjmatchedKind = 92;
jjmatchedPos = 1;
}
- return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x800L);
+ return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x1000L);
case 61:
- if ((active1 & 0x200000000000000L) != 0L)
+ if ((active1 & 0x400000000000000L) != 0L)
{
- jjmatchedKind = 121;
+ jjmatchedKind = 122;
jjmatchedPos = 1;
}
- else if ((active1 & 0x400000000000000L) != 0L)
- return jjStopAtPos(1, 122);
else if ((active1 & 0x800000000000000L) != 0L)
return jjStopAtPos(1, 123);
else if ((active1 & 0x1000000000000000L) != 0L)
+ return jjStopAtPos(1, 124);
+ else if ((active1 & 0x2000000000000000L) != 0L)
{
- jjmatchedKind = 124;
+ jjmatchedKind = 125;
jjmatchedPos = 1;
}
- else if ((active2 & 0x2L) != 0L)
- return jjStopAtPos(1, 129);
else if ((active2 & 0x4L) != 0L)
return jjStopAtPos(1, 130);
else if ((active2 & 0x8L) != 0L)
return jjStopAtPos(1, 137);
else if ((active2 & 0x400L) != 0L)
return jjStopAtPos(1, 138);
- return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xc000000000000000L, active2, 0L);
+ else if ((active2 & 0x800L) != 0L)
+ return jjStopAtPos(1, 139);
+ return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x8000000000000000L, active2, 0x1L);
case 62:
if ((active0 & 0x10L) != 0L)
return jjStopAtPos(1, 4);
- else if ((active0 & 0x4000000000L) != 0L)
- return jjStopAtPos(1, 38);
- else if ((active0 & 0x10000000000L) != 0L)
- return jjStopAtPos(1, 40);
- else if ((active1 & 0x10000000L) != 0L)
+ else if ((active0 & 0x8000000000L) != 0L)
+ return jjStopAtPos(1, 39);
+ else if ((active0 & 0x20000000000L) != 0L)
+ return jjStopAtPos(1, 41);
+ else if ((active1 & 0x20000000L) != 0L)
{
- jjmatchedKind = 92;
+ jjmatchedKind = 93;
jjmatchedPos = 1;
}
- else if ((active1 & 0x2000000000000000L) != 0L)
- return jjStopAtPos(1, 125);
- return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x20000000L, active2, 0x1000L);
+ else if ((active1 & 0x4000000000000000L) != 0L)
+ return jjStopAtPos(1, 126);
+ return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x40000000L, active2, 0x2000L);
case 65:
case 97:
- return jjMoveStringLiteralDfa2_1(active0, 0x100020000800000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x200040000800000L, active1, 0L, active2, 0L);
case 66:
case 98:
- return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x2L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x4L, active2, 0L);
case 67:
case 99:
return jjMoveStringLiteralDfa2_1(active0, 0x80000000L, active1, 0L, active2, 0L);
case 69:
case 101:
- return jjMoveStringLiteralDfa2_1(active0, 0xa100a00000000L, active1, 0x10L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x14202a00000000L, active1, 0x20L, active2, 0L);
case 70:
case 102:
if ((active0 & 0x1000000L) != 0L)
break;
case 72:
case 104:
- return jjMoveStringLiteralDfa2_1(active0, 0x240000000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x480000000000000L, active1, 0L, active2, 0L);
case 73:
case 105:
return jjMoveStringLiteralDfa2_1(active0, 0x20000000L, active1, 0L, active2, 0L);
case 76:
case 108:
- return jjMoveStringLiteralDfa2_1(active0, 0x1006200000L, active1, 0x40L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x1006200000L, active1, 0x80L, active2, 0L);
case 78:
case 110:
- return jjMoveStringLiteralDfa2_1(active0, 0x3c00000500000000L, active1, 0x80000180L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x7800000500000000L, active1, 0x100000300L, active2, 0L);
case 79:
case 111:
- if ((active0 & 0x200000000000L) != 0L)
+ if ((active0 & 0x400000000000L) != 0L)
{
- jjmatchedKind = 45;
+ jjmatchedKind = 46;
jjmatchedPos = 1;
}
- return jjMoveStringLiteralDfa2_1(active0, 0x40018c0000000000L, active1, 0x2cL, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x8003180000000000L, active1, 0x58L, active2, 0L);
case 82:
case 114:
- if ((active1 & 0x40000000L) != 0L)
- return jjStartNfaWithStates_1(1, 94, 14);
- return jjMoveStringLiteralDfa2_1(active0, 0x80000058000000L, active1, 0L, active2, 0L);
+ if ((active1 & 0x80000000L) != 0L)
+ return jjStartNfaWithStates_1(1, 95, 14);
+ return jjMoveStringLiteralDfa2_1(active0, 0x100000058000000L, active1, 0L, active2, 0L);
case 83:
case 115:
- if ((active0 & 0x8000000000000000L) != 0L)
- return jjStartNfaWithStates_1(1, 63, 14);
+ if ((active1 & 0x1L) != 0L)
+ return jjStartNfaWithStates_1(1, 64, 14);
break;
case 84:
case 116:
- return jjMoveStringLiteralDfa2_1(active0, 0x2000000000L, active1, 0x1L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x4000000000L, active1, 0x2L, active2, 0L);
case 85:
case 117:
- return jjMoveStringLiteralDfa2_1(active0, 0x14000000400000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x28000000400000L, active1, 0L, active2, 0L);
case 87:
case 119:
- return jjMoveStringLiteralDfa2_1(active0, 0x20000000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x40000000000000L, active1, 0L, active2, 0L);
case 88:
case 120:
- return jjMoveStringLiteralDfa2_1(active0, 0x400000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa2_1(active0, 0x800000000000L, active1, 0L, active2, 0L);
case 124:
- if ((active1 & 0x8000L) != 0L)
- return jjStopAtPos(1, 79);
+ if ((active1 & 0x10000L) != 0L)
+ return jjStopAtPos(1, 80);
break;
default :
break;
switch(curChar)
{
case 61:
- if ((active1 & 0x4000000000000000L) != 0L)
- return jjStopAtPos(2, 126);
- else if ((active1 & 0x8000000000000000L) != 0L)
+ if ((active1 & 0x8000000000000000L) != 0L)
return jjStopAtPos(2, 127);
- else if ((active2 & 0x800L) != 0L)
- return jjStopAtPos(2, 139);
+ else if ((active2 & 0x1L) != 0L)
+ return jjStopAtPos(2, 128);
else if ((active2 & 0x1000L) != 0L)
return jjStopAtPos(2, 140);
+ else if ((active2 & 0x2000L) != 0L)
+ return jjStopAtPos(2, 141);
break;
case 62:
- if ((active1 & 0x20000000L) != 0L)
- return jjStopAtPos(2, 93);
+ if ((active1 & 0x40000000L) != 0L)
+ return jjStopAtPos(2, 94);
break;
case 65:
case 97:
- return jjMoveStringLiteralDfa3_1(active0, 0x2000200000L, active1, 0x10L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x4000200000L, active1, 0x20L, active2, 0L);
case 67:
case 99:
return jjMoveStringLiteralDfa3_1(active0, 0x500000000L, active1, 0L, active2, 0L);
case 68:
case 100:
- if ((active1 & 0x80000000L) != 0L)
- return jjStartNfaWithStates_1(2, 95, 14);
- return jjMoveStringLiteralDfa3_1(active0, 0x3c00000000000000L, active1, 0L, active2, 0L);
+ if ((active1 & 0x100000000L) != 0L)
+ return jjStartNfaWithStates_1(2, 96, 14);
+ return jjMoveStringLiteralDfa3_1(active0, 0x7800000000000000L, active1, 0L, active2, 0L);
case 69:
case 101:
return jjMoveStringLiteralDfa3_1(active0, 0x10000000L, active1, 0L, active2, 0L);
case 70:
case 102:
- return jjMoveStringLiteralDfa3_1(active0, 0x100000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x202000000000L, active1, 0L, active2, 0L);
case 72:
case 104:
return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0L);
case 73:
case 105:
- return jjMoveStringLiteralDfa3_1(active0, 0x260000040000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x4c0000040000000L, active1, 0L, active2, 0L);
case 74:
case 106:
- return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x2L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x4L, active2, 0L);
case 76:
case 108:
- return jjMoveStringLiteralDfa3_1(active0, 0x104000000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x208000000000000L, active1, 0L, active2, 0L);
case 78:
case 110:
- return jjMoveStringLiteralDfa3_1(active0, 0xc0000400000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x180000400000L, active1, 0L, active2, 0L);
case 79:
case 111:
- return jjMoveStringLiteralDfa3_1(active0, 0x1000000000L, active1, 0x4cL, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x1000000000L, active1, 0x98L, active2, 0L);
case 80:
case 112:
- return jjMoveStringLiteralDfa3_1(active0, 0x10000000000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x20000000000000L, active1, 0L, active2, 0L);
case 81:
case 113:
return jjMoveStringLiteralDfa3_1(active0, 0xa00000000L, active1, 0L, active2, 0L);
case 114:
if ((active0 & 0x800000L) != 0L)
return jjStartNfaWithStates_1(2, 23, 14);
- else if ((active0 & 0x800000000000L) != 0L)
+ else if ((active0 & 0x1000000000000L) != 0L)
{
- jjmatchedKind = 47;
+ jjmatchedKind = 48;
jjmatchedPos = 2;
}
- return jjMoveStringLiteralDfa3_1(active0, 0x4000000008000000L, active1, 0x1L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x8000000008000000L, active1, 0x2L, active2, 0L);
case 83:
case 115:
- return jjMoveStringLiteralDfa3_1(active0, 0x20026000000L, active1, 0L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x40026000000L, active1, 0L, active2, 0L);
case 84:
case 116:
- if ((active1 & 0x80L) != 0L)
+ if ((active1 & 0x100L) != 0L)
{
- jjmatchedKind = 71;
+ jjmatchedKind = 72;
jjmatchedPos = 2;
}
- return jjMoveStringLiteralDfa3_1(active0, 0x9400000000000L, active1, 0x100L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x12800000000000L, active1, 0x200L, active2, 0L);
case 85:
case 117:
- return jjMoveStringLiteralDfa3_1(active0, 0x80000000000000L, active1, 0x20L, active2, 0L);
+ return jjMoveStringLiteralDfa3_1(active0, 0x100000000000000L, active1, 0x40L, active2, 0L);
case 87:
case 119:
- if ((active0 & 0x2000000000000L) != 0L)
- return jjStartNfaWithStates_1(2, 49, 14);
+ if ((active0 & 0x4000000000000L) != 0L)
+ return jjStartNfaWithStates_1(2, 50, 14);
break;
default :
break;
{
case 65:
case 97:
- return jjMoveStringLiteralDfa4_1(active0, 0x100018000000L, active1, 0x40L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x200018000000L, active1, 0x80L);
case 66:
case 98:
- return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0x20L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0x40L);
case 67:
case 99:
return jjMoveStringLiteralDfa4_1(active0, 0x400000L, active1, 0L);
jjmatchedKind = 26;
jjmatchedPos = 3;
}
- else if ((active0 & 0x20000000000L) != 0L)
- return jjStartNfaWithStates_1(3, 41, 14);
- else if ((active0 & 0x80000000000000L) != 0L)
- return jjStartNfaWithStates_1(3, 55, 14);
- return jjMoveStringLiteralDfa4_1(active0, 0x4010400002000000L, active1, 0x102L);
+ else if ((active0 & 0x40000000000L) != 0L)
+ return jjStartNfaWithStates_1(3, 42, 14);
+ else if ((active0 & 0x100000000000000L) != 0L)
+ return jjStartNfaWithStates_1(3, 56, 14);
+ return jjMoveStringLiteralDfa4_1(active0, 0x8020800002000000L, active1, 0x204L);
case 70:
case 102:
- return jjMoveStringLiteralDfa4_1(active0, 0x2000000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x4000000000000000L, active1, 0L);
case 73:
case 105:
- return jjMoveStringLiteralDfa4_1(active0, 0x1000000000000000L, active1, 0x1L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x2000002000000000L, active1, 0x2L);
case 76:
case 108:
- if ((active0 & 0x4000000000000L) != 0L)
- return jjStartNfaWithStates_1(3, 50, 14);
- else if ((active1 & 0x4L) != 0L)
+ if ((active0 & 0x8000000000000L) != 0L)
+ return jjStartNfaWithStates_1(3, 51, 14);
+ else if ((active1 & 0x8L) != 0L)
{
- jjmatchedKind = 66;
+ jjmatchedKind = 67;
jjmatchedPos = 3;
}
- else if ((active1 & 0x10L) != 0L)
- return jjStartNfaWithStates_1(3, 68, 14);
- return jjMoveStringLiteralDfa4_1(active0, 0x200000500000000L, active1, 0x8L);
+ else if ((active1 & 0x20L) != 0L)
+ return jjStartNfaWithStates_1(3, 69, 14);
+ return jjMoveStringLiteralDfa4_1(active0, 0x400000500000000L, active1, 0x10L);
case 78:
case 110:
return jjMoveStringLiteralDfa4_1(active0, 0x40000000L, active1, 0L);
case 111:
if ((active0 & 0x80000000L) != 0L)
return jjStartNfaWithStates_1(3, 31, 14);
- else if ((active0 & 0x1000000000000L) != 0L)
- return jjStartNfaWithStates_1(3, 48, 14);
+ else if ((active0 & 0x2000000000000L) != 0L)
+ return jjStartNfaWithStates_1(3, 49, 14);
break;
case 83:
case 115:
- if ((active0 & 0x40000000000000L) != 0L)
- return jjStartNfaWithStates_1(3, 54, 14);
- return jjMoveStringLiteralDfa4_1(active0, 0x900040000200000L, active1, 0L);
+ if ((active0 & 0x80000000000000L) != 0L)
+ return jjStartNfaWithStates_1(3, 55, 14);
+ return jjMoveStringLiteralDfa4_1(active0, 0x1200080000200000L, active1, 0L);
case 84:
case 116:
if ((active0 & 0x20000000L) != 0L)
return jjStartNfaWithStates_1(3, 29, 14);
- return jjMoveStringLiteralDfa4_1(active0, 0x20082000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x40104000000000L, active1, 0L);
case 85:
case 117:
- return jjMoveStringLiteralDfa4_1(active0, 0x8000a00000000L, active1, 0L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x10000a00000000L, active1, 0L);
case 87:
case 119:
- return jjMoveStringLiteralDfa4_1(active0, 0x400000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa4_1(active0, 0x800000000000000L, active1, 0L);
default :
break;
}
{
case 65:
case 97:
- return jjMoveStringLiteralDfa5_1(active0, 0x4000001000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x8000001000000000L, active1, 0L);
case 67:
case 99:
- return jjMoveStringLiteralDfa5_1(active0, 0x20000000000000L, active1, 0x2L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x40000000000000L, active1, 0x4L);
case 69:
case 101:
- if ((active0 & 0x100000000000000L) != 0L)
- return jjStartNfaWithStates_1(4, 56, 14);
- else if ((active0 & 0x200000000000000L) != 0L)
+ if ((active0 & 0x200000000000000L) != 0L)
return jjStartNfaWithStates_1(4, 57, 14);
- return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x8L);
+ else if ((active0 & 0x400000000000000L) != 0L)
+ return jjStartNfaWithStates_1(4, 58, 14);
+ return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x10L);
case 70:
case 102:
- if ((active0 & 0x1000000000000000L) != 0L)
- return jjStartNfaWithStates_1(4, 60, 14);
+ if ((active0 & 0x2000000000000000L) != 0L)
+ return jjStartNfaWithStates_1(4, 61, 14);
break;
case 71:
case 103:
- return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x100L);
+ return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x200L);
case 72:
case 104:
- return jjMoveStringLiteralDfa5_1(active0, 0x400000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x800000000000000L, active1, 0L);
case 73:
case 105:
- return jjMoveStringLiteralDfa5_1(active0, 0x82a02000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x104a02000000L, active1, 0L);
case 75:
case 107:
if ((active0 & 0x10000000L) != 0L)
break;
case 76:
case 108:
- return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x20L);
+ return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40L);
case 78:
case 110:
- return jjMoveStringLiteralDfa5_1(active0, 0x400000000000L, active1, 0x1L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x802000000000L, active1, 0x2L);
case 79:
case 111:
- return jjMoveStringLiteralDfa5_1(active0, 0x2000000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x4000000000000000L, active1, 0L);
case 82:
case 114:
- if ((active0 & 0x10000000000000L) != 0L)
- return jjStartNfaWithStates_1(4, 52, 14);
- return jjMoveStringLiteralDfa5_1(active0, 0x8000000000000L, active1, 0L);
+ if ((active0 & 0x20000000000000L) != 0L)
+ return jjStartNfaWithStates_1(4, 53, 14);
+ return jjMoveStringLiteralDfa5_1(active0, 0x10000000000000L, active1, 0L);
case 83:
case 115:
if ((active0 & 0x200000L) != 0L)
case 116:
if ((active0 & 0x40000000L) != 0L)
return jjStartNfaWithStates_1(4, 30, 14);
- else if ((active0 & 0x40000000000L) != 0L)
- return jjStartNfaWithStates_1(4, 42, 14);
- else if ((active1 & 0x40L) != 0L)
- return jjStartNfaWithStates_1(4, 70, 14);
+ else if ((active0 & 0x80000000000L) != 0L)
+ return jjStartNfaWithStates_1(4, 43, 14);
+ else if ((active1 & 0x80L) != 0L)
+ return jjStartNfaWithStates_1(4, 71, 14);
return jjMoveStringLiteralDfa5_1(active0, 0x400000L, active1, 0L);
case 85:
case 117:
- return jjMoveStringLiteralDfa5_1(active0, 0x100500000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x200500000000L, active1, 0L);
case 87:
case 119:
- return jjMoveStringLiteralDfa5_1(active0, 0x800000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa5_1(active0, 0x1000000000000000L, active1, 0L);
case 89:
case 121:
if ((active0 & 0x8000000L) != 0L)
{
case 65:
case 97:
- return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L);
+ return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x10L);
case 67:
case 99:
- if ((active0 & 0x2000000000L) != 0L)
- return jjStartNfaWithStates_1(5, 37, 14);
- return jjMoveStringLiteralDfa6_1(active0, 0x4000000000000000L, active1, 0L);
+ if ((active0 & 0x4000000000L) != 0L)
+ return jjStartNfaWithStates_1(5, 38, 14);
+ return jjMoveStringLiteralDfa6_1(active0, 0x8000000000000000L, active1, 0L);
case 68:
case 100:
- return jjMoveStringLiteralDfa6_1(active0, 0x400500000000L, active1, 0L);
+ return jjMoveStringLiteralDfa6_1(active0, 0x800500000000L, active1, 0L);
case 69:
case 101:
- if ((active1 & 0x20L) != 0L)
- return jjStartNfaWithStates_1(5, 69, 14);
- return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x100L);
+ if ((active0 & 0x2000000000L) != 0L)
+ return jjStartNfaWithStates_1(5, 37, 14);
+ else if ((active1 & 0x40L) != 0L)
+ return jjStartNfaWithStates_1(5, 70, 14);
+ return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x200L);
case 70:
case 102:
if ((active0 & 0x2000000L) != 0L)
break;
case 71:
case 103:
- if ((active1 & 0x1L) != 0L)
- return jjStartNfaWithStates_1(5, 64, 14);
+ if ((active1 & 0x2L) != 0L)
+ return jjStartNfaWithStates_1(5, 65, 14);
break;
case 72:
case 104:
- if ((active0 & 0x20000000000000L) != 0L)
- return jjStartNfaWithStates_1(5, 53, 14);
+ if ((active0 & 0x40000000000000L) != 0L)
+ return jjStartNfaWithStates_1(5, 54, 14);
break;
case 73:
case 105:
- return jjMoveStringLiteralDfa6_1(active0, 0xc00000000400000L, active1, 0L);
+ return jjMoveStringLiteralDfa6_1(active0, 0x1800000000400000L, active1, 0L);
case 76:
case 108:
if ((active0 & 0x1000000000L) != 0L)
return jjStartNfaWithStates_1(5, 36, 14);
- return jjMoveStringLiteralDfa6_1(active0, 0x100000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa6_1(active0, 0x200000000000L, active1, 0L);
case 78:
case 110:
- if ((active0 & 0x8000000000000L) != 0L)
- return jjStartNfaWithStates_1(5, 51, 14);
- return jjMoveStringLiteralDfa6_1(active0, 0x80000000000L, active1, 0L);
+ if ((active0 & 0x10000000000000L) != 0L)
+ return jjStartNfaWithStates_1(5, 52, 14);
+ return jjMoveStringLiteralDfa6_1(active0, 0x100000000000L, active1, 0L);
case 82:
case 114:
- if ((active0 & 0x2000000000000000L) != 0L)
- return jjStartNfaWithStates_1(5, 61, 14);
+ if ((active0 & 0x4000000000000000L) != 0L)
+ return jjStartNfaWithStates_1(5, 62, 14);
return jjMoveStringLiteralDfa6_1(active0, 0xa00000000L, active1, 0L);
case 84:
case 116:
- if ((active1 & 0x2L) != 0L)
- return jjStartNfaWithStates_1(5, 65, 14);
+ if ((active1 & 0x4L) != 0L)
+ return jjStartNfaWithStates_1(5, 66, 14);
break;
default :
break;
return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0L);
case 72:
case 104:
- if ((active0 & 0x4000000000000000L) != 0L)
- return jjStartNfaWithStates_1(6, 62, 14);
+ if ((active0 & 0x8000000000000000L) != 0L)
+ return jjStartNfaWithStates_1(6, 63, 14);
break;
case 76:
case 108:
- return jjMoveStringLiteralDfa7_1(active0, 0x400000000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa7_1(active0, 0x800000000000000L, active1, 0L);
case 78:
case 110:
- if ((active1 & 0x8L) != 0L)
- return jjStartNfaWithStates_1(6, 67, 14);
+ if ((active1 & 0x10L) != 0L)
+ return jjStartNfaWithStates_1(6, 68, 14);
break;
case 79:
case 111:
return jjMoveStringLiteralDfa7_1(active0, 0x400000L, active1, 0L);
case 82:
case 114:
- if ((active1 & 0x100L) != 0L)
- return jjStartNfaWithStates_1(6, 72, 14);
+ if ((active1 & 0x200L) != 0L)
+ return jjStartNfaWithStates_1(6, 73, 14);
break;
case 83:
case 115:
- if ((active0 & 0x400000000000L) != 0L)
- return jjStartNfaWithStates_1(6, 46, 14);
+ if ((active0 & 0x800000000000L) != 0L)
+ return jjStartNfaWithStates_1(6, 47, 14);
break;
case 84:
case 116:
- if ((active0 & 0x100000000000L) != 0L)
- return jjStartNfaWithStates_1(6, 44, 14);
- return jjMoveStringLiteralDfa7_1(active0, 0x800000000000000L, active1, 0L);
+ if ((active0 & 0x200000000000L) != 0L)
+ return jjStartNfaWithStates_1(6, 45, 14);
+ return jjMoveStringLiteralDfa7_1(active0, 0x1000000000000000L, active1, 0L);
case 85:
case 117:
- return jjMoveStringLiteralDfa7_1(active0, 0x80000000000L, active1, 0L);
+ return jjMoveStringLiteralDfa7_1(active0, 0x100000000000L, active1, 0L);
default :
break;
}
return jjMoveStringLiteralDfa8_1(active0, 0xc00000000L);
case 67:
case 99:
- return jjMoveStringLiteralDfa8_1(active0, 0x800000000000000L);
+ return jjMoveStringLiteralDfa8_1(active0, 0x1000000000000000L);
case 69:
case 101:
- if ((active0 & 0x80000000000L) != 0L)
- return jjStartNfaWithStates_1(7, 43, 14);
- else if ((active0 & 0x400000000000000L) != 0L)
- return jjStartNfaWithStates_1(7, 58, 14);
+ if ((active0 & 0x100000000000L) != 0L)
+ return jjStartNfaWithStates_1(7, 44, 14);
+ else if ((active0 & 0x800000000000000L) != 0L)
+ return jjStartNfaWithStates_1(7, 59, 14);
break;
case 78:
case 110:
{
case 72:
case 104:
- if ((active0 & 0x800000000000000L) != 0L)
- return jjStartNfaWithStates_1(8, 59, 14);
+ if ((active0 & 0x1000000000000000L) != 0L)
+ return jjStartNfaWithStates_1(8, 60, 14);
break;
case 79:
case 111:
jjstateSet[jjnewStateCnt++] = 2;
if ((0x3fe000000000000L & l) != 0L)
{
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(5, 6);
}
else if (curChar == 48)
{
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddStates(19, 21);
}
break;
case 4:
if ((0x3fe000000000000L & l) == 0L)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(5, 6);
break;
case 5:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(5, 6);
break;
case 7:
case 8:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddStates(22, 24);
break;
case 10:
case 11:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddTwoStates(11, 12);
break;
case 14:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 106)
- kind = 106;
+ if (kind > 107)
+ kind = 107;
jjstateSet[jjnewStateCnt++] = 14;
break;
case 15:
case 17:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 141)
- kind = 141;
+ if (kind > 142)
+ kind = 142;
jjstateSet[jjnewStateCnt++] = 17;
break;
case 18:
case 20:
if (curChar != 46)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddStates(25, 27);
break;
case 21:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddStates(25, 27);
break;
case 23:
case 24:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddTwoStates(24, 12);
break;
case 25:
case 28:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 100)
- kind = 100;
+ if (kind > 101)
+ kind = 101;
jjCheckNAddTwoStates(28, 12);
break;
case 29:
case 33:
if (curChar != 48)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddStates(19, 21);
break;
case 35:
if ((0x3ff000000000000L & l) == 0L)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(35, 6);
break;
case 36:
if ((0xff000000000000L & l) == 0L)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(36, 6);
break;
case 37:
jjCheckNAddStates(31, 33);
break;
case 41:
- if (curChar == 34 && kind > 102)
- kind = 102;
+ if (curChar == 34 && kind > 103)
+ kind = 103;
break;
case 42:
if ((0xfffffffbffffffffL & l) != 0L)
jjCheckNAddStates(34, 36);
break;
case 45:
- if (curChar == 34 && kind > 103)
- kind = 103;
+ if (curChar == 34 && kind > 104)
+ kind = 104;
break;
case 46:
if (curChar == 39)
jjCheckNAddStates(37, 39);
break;
case 50:
- if (curChar == 39 && kind > 102)
- kind = 102;
+ if (curChar == 39 && kind > 103)
+ kind = 103;
break;
case 51:
if ((0xffffff7fffffffffL & l) != 0L)
jjCheckNAddStates(40, 42);
break;
case 54:
- if (curChar == 39 && kind > 104)
- kind = 104;
+ if (curChar == 39 && kind > 105)
+ kind = 105;
break;
case 56:
jjAddStates(43, 45);
case 3:
if ((0x87fffffe87fffffeL & l) != 0L)
{
- if (kind > 106)
- kind = 106;
+ if (kind > 107)
+ kind = 107;
jjCheckNAdd(14);
}
else if (curChar == 96)
kind = 13;
break;
case 6:
- if ((0x100000001000L & l) != 0L && kind > 96)
- kind = 96;
+ if ((0x100000001000L & l) != 0L && kind > 97)
+ kind = 97;
break;
case 9:
if ((0x2000000020L & l) != 0L)
jjAddStates(55, 56);
break;
case 12:
- if ((0x5000000050L & l) != 0L && kind > 100)
- kind = 100;
+ if ((0x5000000050L & l) != 0L && kind > 101)
+ kind = 101;
break;
case 13:
case 14:
if ((0x87fffffe87fffffeL & l) == 0L)
break;
- if (kind > 106)
- kind = 106;
+ if (kind > 107)
+ kind = 107;
jjCheckNAdd(14);
break;
case 16:
case 17:
if ((0x87fffffe87fffffeL & l) == 0L)
break;
- if (kind > 141)
- kind = 141;
+ if (kind > 142)
+ kind = 142;
jjCheckNAdd(17);
break;
case 22:
case 35:
if ((0x7e0000007eL & l) == 0L)
break;
- if (kind > 96)
- kind = 96;
+ if (kind > 97)
+ kind = 97;
jjCheckNAddTwoStates(35, 6);
break;
case 38:
jjstateSet[jjnewStateCnt++] = 57;
break;
case 59:
- if (curChar == 96 && kind > 102)
- kind = 102;
+ if (curChar == 96 && kind > 103)
+ kind = 103;
break;
case 60:
if ((0xfffffffeffffffffL & l) != 0L)
jjstateSet[jjnewStateCnt++] = 61;
break;
case 63:
- if (curChar == 96 && kind > 105)
- kind = 105;
+ if (curChar == 96 && kind > 106)
+ kind = 106;
break;
default : break;
}
case 14:
if ((jjbitVec0[i2] & l2) == 0L)
break;
- if (kind > 106)
- kind = 106;
+ if (kind > 107)
+ kind = 107;
jjCheckNAdd(14);
break;
case 1:
case 17:
if ((jjbitVec0[i2] & l2) == 0L)
break;
- if (kind > 141)
- kind = 141;
+ if (kind > 142)
+ kind = 142;
jjCheckNAdd(17);
break;
case 38:
public static final String[] jjstrLiteralImages = {
"", "\74\77", null, "\74\77\75", "\77\76", null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null, null, null,
-null, null, null, null, null, null, null, null, null, null, null, null, null,
+null, null, null, null, null, null, null, null, null, null, null, null, null, null,
"\55\76", "\72\72", "\75\76", null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, "\100", "\44", "\41", "\176", "\77",
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
};
static final long[] jjtoToken = {
- 0xffffffffffe0001fL, 0xffffc7d1ffffffffL, 0x3fffL,
+ 0xffffffffffe0001fL, 0xffff8fa3ffffffffL, 0x7fffL,
};
static final long[] jjtoSkip = {
0xfffe0L, 0x0L, 0x0L,