* You can test the parser with the PHPParserTestCase2.java
* @author Matthieu Casanova
*/
-public class PHPParser extends PHPParserSuperclass implements PHPParserConstants {
+public final class PHPParser extends PHPParserSuperclass implements PHPParserConstants {
private static IFile fileToParse;
public PHPParser() {
}
- public void setFileToParse(IFile fileToParse) {
+ public final void setFileToParse(IFile fileToParse) {
this.fileToParse = fileToParse;
}
this.fileToParse = fileToParse;
}
- public void phpParserTester(String strEval) throws CoreException, ParseException {
+ public static final void phpParserTester(String strEval) throws CoreException, ParseException {
PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING);
StringReader stream = new StringReader(strEval);
if (jj_input_stream == null) {
phpTest();
}
- public void htmlParserTester(String strEval) throws CoreException, ParseException {
+ public static final void htmlParserTester(String strEval) throws CoreException, ParseException {
StringReader stream = new StringReader(strEval);
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
phpFile();
}
- public PHPOutlineInfo parseInfo(Object parent, String s) {
+ public final PHPOutlineInfo parseInfo(Object parent, String s) {
outlineInfo = new PHPOutlineInfo(parent);
currentSegment = outlineInfo.getDeclarations();
StringReader stream = new StringReader(s);
}
}
- public void parse(String s) throws CoreException {
+ public final void parse(String s) throws CoreException {
StringReader stream = new StringReader(s);
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
}
}
- public void parse() throws ParseException {
+ public static final void parse() throws ParseException {
phpFile();
}
}
jj_consume_token(PHPSTART);
Php();
- jj_consume_token(PHPEND);
+ try {
+ jj_consume_token(PHPEND);
+ } catch (ParseException e) {
+ errorMessage = "'?>' expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
}
jj_consume_token(0);
} catch (TokenMgrError e) {
static final public void ClassDeclaration() throws ParseException {
PHPClassDeclaration classDeclaration;
Token className;
- int pos = jj_input_stream.bufpos;
+ final int pos = jj_input_stream.bufpos;
jj_consume_token(CLASS);
className = jj_consume_token(IDENTIFIER);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
static final public PHPVarDeclaration VariableDeclarator() throws ParseException {
String varName;
String varValue = null;
- int pos = jj_input_stream.bufpos;
+ final int pos = jj_input_stream.bufpos;
varName = VariableDeclaratorId();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ASSIGN:
static final public String VariableDeclaratorId() throws ParseException {
String expr;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
try {
expr = Variable();
buff.append(expr);
static final public String ArrayVariable() throws ParseException {
String expr;
-StringBuffer buff = new StringBuffer();
+final StringBuffer buff = new StringBuffer();
expr = Expression();
buff.append(expr);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
static final public String ArrayInitializer() throws ParseException {
String expr = null;
-StringBuffer buff = new StringBuffer("(");
+final StringBuffer buff = new StringBuffer("(");
jj_consume_token(LPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
Token identifier;
StringBuffer methodDeclaration = new StringBuffer();
String formalParameters;
- int pos = jj_input_stream.bufpos;
+ final int pos = jj_input_stream.bufpos;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BIT_AND:
jj_consume_token(BIT_AND);
static final public String FormalParameter() throws ParseException {
PHPVarDeclaration variableDeclaration;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BIT_AND:
jj_consume_token(BIT_AND);
String expr;
Token operator;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ConditionalAndExpression();
buff.append(expr);
label_8:
String expr;
Token operator;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ConcatExpression();
buff.append(expr);
label_9:
static final public String ConcatExpression() throws ParseException {
String expr;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = InclusiveOrExpression();
buff.append(expr);
label_10:
static final public String InclusiveOrExpression() throws ParseException {
String expr;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ExclusiveOrExpression();
buff.append(expr);
label_11:
static final public String ExclusiveOrExpression() throws ParseException {
String expr;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = AndExpression();
buff.append(expr);
label_12:
}
static final public String AndExpression() throws ParseException {
- String expr;
+ final String expr;
String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = EqualityExpression();
buff.append(expr);
label_13:
String expr;
Token operator;
String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = RelationalExpression();
buff.append(expr);
label_14:
String expr;
Token operator;
String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ShiftExpression();
buff.append(expr);
label_15:
static final public String ShiftExpression() throws ParseException {
String expr;
Token operator;
- String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = AdditiveExpression();
buff.append(expr);
label_16:
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = AdditiveExpression();
+ expr = AdditiveExpression();
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
static final public String AdditiveExpression() throws ParseException {
String expr;
Token operator;
- String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = MultiplicativeExpression();
buff.append(expr);
label_17:
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = MultiplicativeExpression();
+ expr = MultiplicativeExpression();
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
static final public String MultiplicativeExpression() throws ParseException {
- String expr, expr2;
+ String expr;
Token operator;
final StringBuffer buff = new StringBuffer();
expr = UnaryExpression();
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = UnaryExpression();
+ expr = UnaryExpression();
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
static final public String CastExpression() throws ParseException {
-String type;
-String expr;
+final String type, expr;
jj_consume_token(LPAREN);
type = Type();
jj_consume_token(RPAREN);
}
static final public String ArrayDeclarator() throws ParseException {
- String expr;
+ final String expr;
jj_consume_token(ARRAY);
expr = ArrayInitializer();
{if (true) return "array" + expr;}
static final public String ArgumentList() throws ParseException {
String expr;
-StringBuffer buff = new StringBuffer();
+final StringBuffer buff = new StringBuffer();
expr = Expression();
buff.append(expr);
label_22:
static final public void IncludeStatement() throws ParseException {
String expr;
- int pos = jj_input_stream.bufpos;
+ final int pos = jj_input_stream.bufpos;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case REQUIRE:
jj_consume_token(REQUIRE);
}
static final public String PrintExpression() throws ParseException {
- StringBuffer buff = new StringBuffer("print ");
+ final StringBuffer buff = new StringBuffer("print ");
String expr;
jj_consume_token(PRINT);
expr = Expression();
}
static final public void IfStatement() throws ParseException {
- jj_consume_token(IF);
+ Token token;
+ final int pos = jj_input_stream.bufpos;
+ token = jj_consume_token(IF);
Condition("if");
- IfStatement0();
+ IfStatement0(pos,pos+token.image.length());
}
static final public void Condition(String keyword) throws ParseException {
}
}
- static final public void IfStatement0() throws ParseException {
+ static final public void IfStatement0(int start,int end) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COLON:
jj_consume_token(COLON);
jj_la1[89] = jj_gen;
;
}
- jj_consume_token(ENDIF);
+ try {
+ setMarker(fileToParse,
+ "Ugly syntax detected, you should if () {...} instead of if (): ... endif;",
+ start,
+ end,
+ INFO,
+ "Line " + token.beginLine);
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ try {
+ jj_consume_token(ENDIF);
+ } catch (ParseException e) {
+ errorMessage = "'endif' expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
try {
jj_consume_token(SEMICOLON);
} catch (ParseException e) {
}
}
- static final public void ElseStatement() throws ParseException {
- jj_consume_token(ELSE);
- Statement();
- }
-
static final public void ElseStatementColon() throws ParseException {
jj_consume_token(ELSE);
jj_consume_token(COLON);
}
static final public void WhileStatement() throws ParseException {
- jj_consume_token(WHILE);
+ Token token;
+ final int pos = jj_input_stream.bufpos;
+ token = jj_consume_token(WHILE);
Condition("while");
- WhileStatement0();
+ WhileStatement0(pos,pos + token.image.length());
}
- static final public void WhileStatement0() throws ParseException {
+ static final public void WhileStatement0(final int start, final int end) throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COLON:
jj_consume_token(COLON);
}
Statement();
}
- jj_consume_token(ENDWHILE);
+ try {
+ setMarker(fileToParse,
+ "Ugly syntax detected, you should while () {...} instead of while (): ... endwhile;",
+ start,
+ end,
+ INFO,
+ "Line " + token.beginLine);
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ try {
+ jj_consume_token(ENDWHILE);
+ } catch (ParseException e) {
+ errorMessage = "'endwhile' expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
try {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case SEMICOLON:
static final public void ForeachStatement() throws ParseException {
jj_consume_token(FOREACH);
- jj_consume_token(LPAREN);
- Variable();
- jj_consume_token(AS);
- Variable();
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after 'foreach' keyword";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
+ try {
+ Variable();
+ } catch (ParseException e) {
+ errorMessage = "variable expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(AS);
+ } catch (ParseException e) {
+ errorMessage = "'as' expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
+ try {
+ Variable();
+ } catch (ParseException e) {
+ errorMessage = "variable expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAYASSIGN:
jj_consume_token(ARRAYASSIGN);
jj_la1[99] = jj_gen;
;
}
- jj_consume_token(RPAREN);
- Statement();
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected after 'foreach' keyword";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
+ try {
+ Statement();
+ } catch (ParseException e) {
+ if (errorMessage != null) {if (true) throw e;}
+ errorMessage = "statement expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
}
static final public void ForStatement() throws ParseException {
- jj_consume_token(FOR);
- jj_consume_token(LPAREN);
+Token token;
+final int pos = jj_input_stream.bufpos;
+ token = jj_consume_token(FOR);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after 'for' keyword";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
case NEW:
}
Statement();
}
- jj_consume_token(ENDFOR);
+ try {
+ setMarker(fileToParse,
+ "Ugly syntax detected, you should for () {...} instead of for (): ... endfor;",
+ pos,
+ pos+token.image.length(),
+ INFO,
+ "Line " + token.beginLine);
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ try {
+ jj_consume_token(ENDFOR);
+ } catch (ParseException e) {
+ errorMessage = "'endfor' expected";
+ errorLevel = ERROR;
+ {if (true) throw e;}
+ }
try {
jj_consume_token(SEMICOLON);
} catch (ParseException e) {
return retval;
}
- static final private boolean jj_3_5() {
- if (jj_3R_41()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_42()) {
- jj_scanpos = xsp;
- if (jj_3R_43()) 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_142() {
- 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_141() {
- 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_107() {
- 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_140() {
- if (jj_scan_token(NE)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_139() {
- 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_98() {
- 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_105() {
- 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_138() {
- if (jj_scan_token(EQ)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_97() {
if (jj_3R_109()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_202() {
- if (jj_scan_token(COMMA)) return true;
+ static final private boolean jj_3R_122() {
+ if (jj_scan_token(LBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_3R_41()) 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_122() {
- if (jj_scan_token(LBRACE)) return true;
+ static final private boolean jj_3R_202() {
+ if (jj_scan_token(COMMA)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
if (jj_3R_41()) 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;
}
return false;
}
- static final private boolean jj_3R_200() {
- if (jj_3R_201()) 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(DOLLAR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_200() {
+ if (jj_3R_201()) 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(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- 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_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_68() {
if (jj_scan_token(LBRACE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_128() {
- if (jj_scan_token(XOR)) return true;
+ static final private boolean jj_3R_198() {
+ if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_127()) return true;
+ 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_125() {
- if (jj_scan_token(NULL)) return true;
+ static final private boolean jj_3R_128() {
+ if (jj_scan_token(XOR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_127()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
+ static final private boolean jj_3R_125() {
+ 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_120() {
if (jj_3R_127()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_130() {
- 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_92() {
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_130() {
+ 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_124() {
Token xsp;
xsp = jj_scanpos;
return false;
}
- static final private boolean jj_3R_117() {
- if (jj_3R_124()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3_1() {
if (jj_3R_38()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_116() {
- if (jj_scan_token(STRING_LITERAL)) return true;
+ static final private boolean jj_3R_117() {
+ if (jj_3R_124()) 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(FLOATING_POINT_LITERAL)) return true;
+ static final private boolean jj_3R_116() {
+ if (jj_scan_token(STRING_LITERAL)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
+ static final private boolean jj_3R_115() {
+ if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_104() {
Token xsp;
xsp = jj_scanpos;
return false;
}
- static final private boolean jj_3R_47() {
- if (jj_scan_token(LBRACKET)) return true;
+ static final private boolean jj_3R_59() {
+ if (jj_3R_66()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_62()) jj_scanpos = xsp;
+ if (jj_3R_67()) 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_59() {
- if (jj_3R_66()) return true;
+ static final private boolean jj_3R_47() {
+ if (jj_scan_token(LBRACKET)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_67()) jj_scanpos = xsp;
+ if (jj_3R_62()) 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;
}
return false;
}
- static final private boolean jj_3R_194() {
- if (jj_3R_198()) 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_194()) {
- jj_scanpos = xsp;
- if (jj_3R_195()) 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(SC_AND)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_194() {
+ if (jj_3R_198()) 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_194()) {
+ jj_scanpos = xsp;
+ if (jj_3R_195()) 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_77() {
if (jj_3R_99()) 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(HOOK)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_41()) 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_64()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_196() {
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_73() {
- if (jj_scan_token(HOOK)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_41()) 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_64()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_188() {
- if (jj_3R_66()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_101() {
if (jj_scan_token(SC_OR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_188() {
+ if (jj_3R_66()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_187() {
if (jj_scan_token(NEW)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_72() {
+ if (jj_3R_77()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_78()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
+ return false;
+ }
+
static final private boolean jj_3R_190() {
if (jj_scan_token(DECR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_72() {
- if (jj_3R_77()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_78()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
- return false;
- }
-
static final private boolean jj_3R_60() {
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_64() {
+ if (jj_3R_72()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_73()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_189() {
if (jj_scan_token(INCR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_64() {
- if (jj_3R_72()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_73()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_191() {
if (jj_3R_192()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_91() {
+ 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_45() {
if (jj_3R_59()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_91() {
- if (jj_scan_token(TILDEEQUAL)) return true;
+ static final private boolean jj_3R_90() {
+ 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_89() {
+ if (jj_scan_token(ORASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_90() {
- if (jj_scan_token(DOTASSIGN)) 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(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_89() {
- 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_88() {
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_181() {
- if (jj_3R_179()) 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_82() {
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_181() {
+ if (jj_3R_179()) 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_80() {
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_172() {
- if (jj_scan_token(DECR)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_179()) return true;
+ static final private boolean jj_3R_56() {
+ 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_56() {
- if (jj_scan_token(OBJECT)) return true;
+ static final private boolean jj_3R_172() {
+ if (jj_scan_token(DECR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_179()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
+ static final private boolean jj_3R_53() {
+ 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_171() {
if (jj_scan_token(INCR)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_53() {
- if (jj_scan_token(FLOAT)) return true;
+ static final private boolean jj_3R_52() {
+ if (jj_scan_token(DOUBLE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_52() {
- if (jj_scan_token(DOUBLE)) return true;
+ static final private boolean jj_3R_51() {
+ 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_51() {
- if (jj_scan_token(REAL)) return true;
+ static final private boolean jj_3R_50() {
+ if (jj_scan_token(BOOLEAN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_50() {
- 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_168() {
if (jj_3R_173()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_162() {
- if (jj_scan_token(REM)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_40() {
Token xsp;
xsp = jj_scanpos;
return false;
}
+ static final private boolean jj_3R_162() {
+ if (jj_scan_token(REM)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_166() {
if (jj_3R_171()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3_7() {
+ if (jj_3R_45()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_163() {
Token xsp;
xsp = jj_scanpos;
return false;
}
+ static final private boolean jj_3R_148() {
+ 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_155() {
Token xsp;
xsp = jj_scanpos;
return false;
}
- static final private boolean jj_3R_148() {
- 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_149() {
if (jj_3R_154()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_146() {
+ 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_151() {
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_146() {
- 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_136() {
if (jj_3R_143()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_43() {
- if (jj_scan_token(135)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
static final private boolean jj_3R_145() {
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_43() {
+ if (jj_scan_token(135)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3R_134() {
if (jj_3R_136()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
+ static final private boolean jj_3R_133() {
+ if (jj_scan_token(ARRAYASSIGN)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_41()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
static final private boolean jj_3_6() {
if (jj_3R_44()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_133() {
- if (jj_scan_token(ARRAYASSIGN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ static final private boolean jj_3R_39() {
if (jj_3R_41()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_133()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
return false;
}
- static final private boolean jj_3R_39() {
+ static final private boolean jj_3R_142() {
+ 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_141() {
+ 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_107() {
+ 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_140() {
+ if (jj_scan_token(NE)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3_5() {
if (jj_3R_41()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_133()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_42()) {
+ jj_scanpos = xsp;
+ if (jj_3R_43()) 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_3_7() {
- if (jj_3R_45()) return true;
+ static final private boolean jj_3R_139() {
+ 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_98() {
+ 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_105() {
+ 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_138() {
+ if (jj_scan_token(EQ)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}