X-Git-Url: http://secure.phpeclipse.com
diff --git a/net.sourceforge.phpeclipse/src/test/PHPParser.java b/net.sourceforge.phpeclipse/src/test/PHPParser.java
index 0a1f400..9e7acc4 100644
--- a/net.sourceforge.phpeclipse/src/test/PHPParser.java
+++ b/net.sourceforge.phpeclipse/src/test/PHPParser.java
@@ -8,132 +8,170 @@ import org.eclipse.ui.texteditor.MarkerUtilities;
import org.eclipse.jface.preference.IPreferenceStore;
import java.util.Hashtable;
+import java.util.Enumeration;
import java.io.StringReader;
+import java.io.*;
import java.text.MessageFormat;
import net.sourceforge.phpeclipse.actions.PHPStartApacheAction;
import net.sourceforge.phpeclipse.PHPeclipsePlugin;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPSegmentWithChildren;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPFunctionDeclaration;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPClassDeclaration;
+import net.sourceforge.phpdt.internal.compiler.parser.*;
+import net.sourceforge.phpdt.internal.compiler.ast.*;
/**
* A new php parser.
- * This php parser is inspired by the Java 1.2 grammar example
+ * This php parser is inspired by the Java 1.2 grammar example
* given with JavaCC. You can get JavaCC at http://www.webgain.com
* 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 {
+ /** The file that is parsed. */
private static IFile fileToParse;
- /** The current segment */
+ /** The current segment. */
private static PHPSegmentWithChildren currentSegment;
private static final String PARSE_ERROR_STRING = "Parse error"; //$NON-NLS-1$
private static final String PARSE_WARNING_STRING = "Warning"; //$NON-NLS-1$
- public static final int ERROR = 2;
- public static final int WARNING = 1;
- public static final int INFO = 0;
PHPOutlineInfo outlineInfo;
+
+ private static PHPFunctionDeclaration currentFunction;
+ private static boolean assigning;
+
+ /** The error level of the current ParseException. */
private static int errorLevel = ERROR;
+ /** The message of the current ParseException. If it's null it's because the parse exception wasn't handled */
private static String errorMessage;
- public PHPParser() {
- }
+ private static int errorStart = -1;
+ private static int errorEnd = -1;
- public void setFileToParse(IFile fileToParse) {
+ //ast stack
+ private final static int AstStackIncrement = 100;
+ /** The stack of node. */
+ private static AstNode[] astStack;
+ /** The cursor in expression stack. */
+ private static int expressionPtr;
+
+ public final void setFileToParse(final IFile fileToParse) {
this.fileToParse = fileToParse;
}
- public PHPParser(IFile fileToParse) {
+ public PHPParser() {
+ }
+
+ public PHPParser(final IFile fileToParse) {
this(new StringReader(""));
this.fileToParse = fileToParse;
}
- public void phpParserTester(String strEval) throws CoreException, ParseException {
+ public static final void phpParserTester(final String strEval) throws CoreException, ParseException {
PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING);
- StringReader stream = new StringReader(strEval);
+ final StringReader stream = new StringReader(strEval);
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
}
ReInit(new StringReader(strEval));
+ astStack = new AstNode[AstStackIncrement];
phpTest();
}
- public void htmlParserTester(String strEval) throws CoreException, ParseException {
- StringReader stream = new StringReader(strEval);
+ public static final void htmlParserTester(final File fileName) throws CoreException, ParseException {
+ try {
+ final Reader stream = new FileReader(fileName);
+ if (jj_input_stream == null) {
+ jj_input_stream = new SimpleCharStream(stream, 1, 1);
+ }
+ ReInit(stream);
+ astStack = new AstNode[AstStackIncrement];
+ phpFile();
+ } catch (FileNotFoundException e) {
+ e.printStackTrace(); //To change body of catch statement use Options | File Templates.
+ }
+ }
+
+ public static final void htmlParserTester(final String strEval) throws CoreException, ParseException {
+ final StringReader stream = new StringReader(strEval);
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
}
ReInit(stream);
+ astStack = new AstNode[AstStackIncrement];
phpFile();
}
- public PHPOutlineInfo parseInfo(Object parent, String s) {
+ public final PHPOutlineInfo parseInfo(final Object parent, final String s) {
outlineInfo = new PHPOutlineInfo(parent);
currentSegment = outlineInfo.getDeclarations();
- StringReader stream = new StringReader(s);
+ final StringReader stream = new StringReader(s);
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
}
ReInit(stream);
+ astStack = new AstNode[AstStackIncrement];
try {
parse();
} catch (ParseException e) {
- if (errorMessage == null) {
- PHPeclipsePlugin.log(e);
- } else {
- setMarker(errorMessage, e.currentToken.beginLine, errorLevel);
- errorMessage = null;
- }
+ processParseException(e);
}
return outlineInfo;
}
-
/**
- * Create marker for the parse error
+ * This method will process the parse exception.
+ * If the error message is null, the parse exception wasn't catched and a trace is written in the log
+ * @param e the ParseException
*/
- private static void setMarker(String message, int lineNumber, int errorLevel) {
- try {
- setMarker(fileToParse, message, lineNumber, errorLevel);
- } catch (CoreException e) {
+ private static void processParseException(final ParseException e) {
+ if (errorMessage == null) {
PHPeclipsePlugin.log(e);
+ errorMessage = "this exception wasn't handled by the parser please tell us how to reproduce it";
+ errorStart = jj_input_stream.getPosition();
+ errorEnd = errorStart + 1;
}
+ setMarker(e);
+ errorMessage = null;
}
- public static void setMarker(IFile file, String message, int lineNumber, int errorLevel) throws CoreException {
- if (file != null) {
- Hashtable attributes = new Hashtable();
- MarkerUtilities.setMessage(attributes, message);
- switch (errorLevel) {
- case ERROR :
- attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_ERROR));
- break;
- case WARNING :
- attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_WARNING));
- break;
- case INFO :
- attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_INFO));
- break;
+ /**
+ * Create marker for the parse error
+ * @param e the ParseException
+ */
+ private static void setMarker(final ParseException e) {
+ try {
+ if (errorStart == -1) {
+ setMarker(fileToParse,
+ errorMessage,
+ jj_input_stream.tokenBegin,
+ jj_input_stream.tokenBegin + e.currentToken.image.length(),
+ errorLevel,
+ "Line " + e.currentToken.beginLine);
+ } else {
+ setMarker(fileToParse,
+ errorMessage,
+ errorStart,
+ errorEnd,
+ errorLevel,
+ "Line " + e.currentToken.beginLine);
+ errorStart = -1;
+ errorEnd = -1;
}
- MarkerUtilities.setLineNumber(attributes, lineNumber);
- MarkerUtilities.createMarker(file, attributes, IMarker.PROBLEM);
+ } catch (CoreException e2) {
+ PHPeclipsePlugin.log(e2);
}
}
/**
* Create markers according to the external parser output
*/
- private static void createMarkers(String output, IFile file) throws CoreException {
+ private static void createMarkers(final String output, final IFile file) throws CoreException {
// delete all markers
file.deleteMarkers(IMarker.PROBLEM, false, 0);
int indx = 0;
- int brIndx = 0;
+ int brIndx;
boolean flag = true;
while ((brIndx = output.indexOf("
", indx)) != -1) {
// newer php error output (tested with 4.2.3)
@@ -150,7 +188,10 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
}
}
- private static void scanLine(String output, IFile file, int indx, int brIndx) throws CoreException {
+ private static void scanLine(final String output,
+ final IFile file,
+ final int indx,
+ final int brIndx) throws CoreException {
String current;
StringBuffer lineNumberBuffer = new StringBuffer(10);
char ch;
@@ -188,17 +229,17 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
}
}
- public void parse(String s) throws CoreException {
- ReInit(new StringReader(s));
+ public final void parse(final String s) throws CoreException {
+ final StringReader stream = new StringReader(s);
+ if (jj_input_stream == null) {
+ jj_input_stream = new SimpleCharStream(stream, 1, 1);
+ }
+ ReInit(stream);
+ astStack = new AstNode[AstStackIncrement];
try {
parse();
} catch (ParseException e) {
- if (errorMessage == null) {
- PHPeclipsePlugin.log(e);
- } else {
- setMarker(errorMessage, e.currentToken.beginLine, errorLevel);
- errorMessage = null;
- }
+ processParseException(e);
}
}
@@ -206,15 +247,15 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
* Call the php parse command ( php -l -f <filename> )
* and create markers according to the external parser output
*/
- public static void phpExternalParse(IFile file) {
- IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
- String filename = file.getLocation().toString();
+ public static void phpExternalParse(final IFile file) {
+ final IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
+ final String filename = file.getLocation().toString();
- String[] arguments = { filename };
- MessageFormat form = new MessageFormat(store.getString(PHPeclipsePlugin.EXTERNAL_PARSER_PREF));
- String command = form.format(arguments);
+ final String[] arguments = { filename };
+ final MessageFormat form = new MessageFormat(store.getString(PHPeclipsePlugin.EXTERNAL_PARSER_PREF));
+ final String command = form.format(arguments);
- String parserResult = PHPStartApacheAction.getParserOutput(command, "External parser: ");
+ final String parserResult = PHPStartApacheAction.getParserOutput(command, "External parser: ");
try {
// parse the buffer to find the errors and warnings
@@ -224,38 +265,199 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
}
}
- public void parse() throws ParseException {
+ private static final void parse() throws ParseException {
phpFile();
}
-/*****************************************
- * THE JAVA LANGUAGE GRAMMAR STARTS HERE *
- *****************************************/
-
-/*
- * Program structuring syntax follows.
- */
static final public void phpTest() throws ParseException {
Php();
jj_consume_token(0);
}
static final public void phpFile() throws ParseException {
- label_1:
- while (true) {
+ try {
+ label_1:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPSTARTSHORT:
+ case PHPSTARTLONG:
+ case PHPECHOSTART:
+ case PHPEND:
+ case CLASS:
+ case FUNCTION:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ ;
+ break;
+ default:
+ jj_la1[0] = jj_gen;
+ break label_1;
+ }
+ PhpBlock();
+ }
+ jj_consume_token(0);
+ } catch (TokenMgrError e) {
+ PHPeclipsePlugin.log(e);
+ errorStart = SimpleCharStream.getPosition();
+ errorEnd = errorStart + 1;
+ errorMessage = e.getMessage();
+ errorLevel = ERROR;
+ {if (true) throw generateParseException();}
+ }
+ }
+
+/**
+ * A php block is a = expression [;]?>
+ * or
+ * or somephpcode ?>
+ */
+ static final public void PhpBlock() throws ParseException {
+ final int start = jj_input_stream.getPosition();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPECHOSTART:
+ phpEchoBlock();
+ break;
+ case PHPSTARTSHORT:
+ case PHPSTARTLONG:
+ case PHPEND:
+ case CLASS:
+ case FUNCTION:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case PHPSTART:
- ;
+ case PHPSTARTSHORT:
+ case PHPSTARTLONG:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPSTARTLONG:
+ jj_consume_token(PHPSTARTLONG);
+ break;
+ case PHPSTARTSHORT:
+ jj_consume_token(PHPSTARTSHORT);
+ try {
+ setMarker(fileToParse,
+ "You should use '' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ break;
+ default:
+ jj_la1[3] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
}
- jj_consume_token(0);
+ }
+
+ static final public void phpEchoBlock() throws ParseException {
+ jj_consume_token(PHPECHOSTART);
+ Expression();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case SEMICOLON:
+ jj_consume_token(SEMICOLON);
+ break;
+ default:
+ jj_la1[4] = jj_gen;
+ ;
+ }
+ jj_consume_token(PHPEND);
}
static final public void Php() throws ParseException {
@@ -266,6 +468,8 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
case FUNCTION:
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -274,17 +478,17 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
- case FALSE:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -304,7 +508,7 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
;
break;
default:
- jj_la1[1] = jj_gen;
+ jj_la1[5] = jj_gen;
break label_2;
}
BlockStatement();
@@ -312,29 +516,58 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
}
static final public void ClassDeclaration() throws ParseException {
- PHPClassDeclaration classDeclaration;
- Token className;
- int pos = jj_input_stream.bufpos;
+ final PHPClassDeclaration classDeclaration;
+ final Token className;
+ final int pos;
jj_consume_token(CLASS);
- className = jj_consume_token(IDENTIFIER);
+ try {
+ pos = jj_input_stream.getPosition();
+ className = jj_consume_token(IDENTIFIER);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case EXTENDS:
jj_consume_token(EXTENDS);
- jj_consume_token(IDENTIFIER);
+ try {
+ jj_consume_token(IDENTIFIER);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
break;
default:
- jj_la1[2] = jj_gen;
+ jj_la1[6] = jj_gen;
;
}
- classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos);
- currentSegment.add(classDeclaration);
- currentSegment = classDeclaration;
+ if (currentSegment != null) {
+ classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos);
+ currentSegment.add(classDeclaration);
+ currentSegment = classDeclaration;
+ }
ClassBody();
- currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
+ if (currentSegment != null) {
+ currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
+ }
}
static final public void ClassBody() throws ParseException {
- jj_consume_token(LBRACE);
+ try {
+ jj_consume_token(LBRACE);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image + "', '{' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
label_3:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -343,14 +576,25 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
;
break;
default:
- jj_la1[3] = jj_gen;
+ jj_la1[7] = jj_gen;
break label_3;
}
ClassBodyDeclaration();
}
- jj_consume_token(RBRACE);
+ try {
+ jj_consume_token(RBRACE);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', 'var', 'function' or '}' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
+/**
+ * A class can contain only methods and fields.
+ */
static final public void ClassBodyDeclaration() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case FUNCTION:
@@ -360,15 +604,22 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
FieldDeclaration();
break;
default:
- jj_la1[4] = jj_gen;
+ jj_la1[8] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
+/**
+ * A class field declaration : it's var VariableDeclarator() (, VariableDeclarator())*;.
+ */
static final public void FieldDeclaration() throws ParseException {
+ PHPVarDeclaration variableDeclaration;
jj_consume_token(VAR);
- VariableDeclarator();
+ variableDeclaration = VariableDeclarator();
+ if (currentSegment != null) {
+ currentSegment.add(variableDeclaration);
+ }
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -376,56 +627,82 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
;
break;
default:
- jj_la1[5] = jj_gen;
+ jj_la1[9] = jj_gen;
break label_4;
}
jj_consume_token(COMMA);
- VariableDeclarator();
+ variableDeclaration = VariableDeclarator();
+ if (currentSegment != null) {
+ currentSegment.add(variableDeclaration);
+ }
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected after variable declaration";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
- jj_consume_token(SEMICOLON);
}
- static final public String VariableDeclarator() throws ParseException {
- String expr;
- StringBuffer buff = new StringBuffer();
- expr = VariableDeclaratorId();
- buff.append(expr);
+ static final public PHPVarDeclaration VariableDeclarator() throws ParseException {
+ final String varName, varValue;
+ final int pos = jj_input_stream.getPosition();
+ varName = VariableDeclaratorId();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ASSIGN:
jj_consume_token(ASSIGN);
- expr = VariableInitializer();
- buff.append("=").append(expr);
+ try {
+ varValue = VariableInitializer();
+ {if (true) return new PHPVarDeclaration(currentSegment,varName,pos,varValue);}
+ } catch (ParseException e) {
+ errorMessage = "Literal expression expected in variable initializer";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
break;
default:
- jj_la1[6] = jj_gen;
+ jj_la1[10] = jj_gen;
;
}
- {if (true) return buff.toString();}
+ {if (true) return new PHPVarDeclaration(currentSegment,varName,pos);}
throw new Error("Missing return statement in function");
}
static final public String VariableDeclaratorId() throws ParseException {
String expr;
- StringBuffer buff = new StringBuffer();
- expr = Variable();
- buff.append(expr);
- label_5:
- while (true) {
- if (jj_2_1(2)) {
- ;
- } else {
- break label_5;
+ final StringBuffer buff = new StringBuffer();
+ try {
+ expr = Variable();
+ buff.append(expr);
+ label_5:
+ while (true) {
+ if (jj_2_1(2)) {
+ ;
+ } else {
+ break label_5;
+ }
+ expr = VariableSuffix();
+ buff.append(expr);
}
- expr = VariableSuffix();
- buff.append(expr);
+ {if (true) return buff.toString();}
+ } catch (ParseException e) {
+ errorMessage = "'$' expected for variable identifier";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
- {if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
static final public String Variable() throws ParseException {
String expr = null;
- Token token;
+ final Token token;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOLLAR_ID:
token = jj_consume_token(DOLLAR_ID);
@@ -436,21 +713,27 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
jj_consume_token(RBRACE);
break;
default:
- jj_la1[7] = jj_gen;
+ jj_la1[11] = jj_gen;
;
}
- if (expr == null) {
- {if (true) return token.image;}
+ if (expr == null && !assigning) {
+ if (currentFunction != null) {
+ PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1));
+ if (var != null) {
+ var.getVariable().setUsed(true);
+ }
+ }
+ {if (true) return token.image.substring(1);}
}
{if (true) return token + "{" + expr + "}";}
break;
case DOLLAR:
jj_consume_token(DOLLAR);
expr = VariableName();
- {if (true) return "$" + expr;}
+ {if (true) return expr;}
break;
default:
- jj_la1[8] = jj_gen;
+ jj_la1[12] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -459,7 +742,7 @@ public class PHPParser extends PHPParserSuperclass implements PHPParserConstants
static final public String VariableName() throws ParseException {
String expr = null;
-Token token;
+final Token token;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LBRACE:
jj_consume_token(LBRACE);
@@ -476,10 +759,16 @@ Token token;
jj_consume_token(RBRACE);
break;
default:
- jj_la1[9] = jj_gen;
+ jj_la1[13] = jj_gen;
;
}
if (expr == null) {
+ if (currentFunction != null) {
+ PHPVarDeclaration var = currentFunction.getParameter(token.image);
+ if (var != null) {
+ var.getVariable().setUsed(true);
+ }
+ }
{if (true) return token.image;}
}
{if (true) return token + "{" + expr + "}";}
@@ -487,10 +776,26 @@ Token token;
case DOLLAR:
jj_consume_token(DOLLAR);
expr = VariableName();
- {if (true) return "$" + expr;}
+ if (currentFunction != null) {
+ PHPVarDeclaration var = currentFunction.getParameter(expr);
+ if (var != null) {
+ var.getVariable().setUsed(true);
+ }
+ }
+ {if (true) return "$" + expr;}
+ break;
+ case DOLLAR_ID:
+ token = jj_consume_token(DOLLAR_ID);
+ if (currentFunction != null) {
+ PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1));
+ if (var != null) {
+ var.getVariable().setUsed(true);
+ }
+ }
+ {if (true) return token.image + expr;}
break;
default:
- jj_la1[10] = jj_gen;
+ jj_la1[14] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -498,15 +803,69 @@ Token token;
}
static final public String VariableInitializer() throws ParseException {
- String expr;
- expr = Expression();
+ final String expr;
+ final Token token;
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ expr = Literal();
{if (true) return expr;}
+ break;
+ case MINUS:
+ jj_consume_token(MINUS);
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case INTEGER_LITERAL:
+ token = jj_consume_token(INTEGER_LITERAL);
+ break;
+ case FLOATING_POINT_LITERAL:
+ token = jj_consume_token(FLOATING_POINT_LITERAL);
+ break;
+ default:
+ jj_la1[15] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ {if (true) return "-" + token.image;}
+ break;
+ case PLUS:
+ jj_consume_token(PLUS);
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case INTEGER_LITERAL:
+ token = jj_consume_token(INTEGER_LITERAL);
+ break;
+ case FLOATING_POINT_LITERAL:
+ token = jj_consume_token(FLOATING_POINT_LITERAL);
+ break;
+ default:
+ jj_la1[16] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ {if (true) return "+" + token.image;}
+ break;
+ case ARRAY:
+ expr = ArrayDeclarator();
+ {if (true) return expr;}
+ break;
+ case IDENTIFIER:
+ token = jj_consume_token(IDENTIFIER);
+ {if (true) return token.image;}
+ break;
+ default:
+ jj_la1[17] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
throw new Error("Missing return statement in function");
}
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) {
@@ -516,7 +875,7 @@ StringBuffer buff = new StringBuffer();
buff.append("=>").append(expr);
break;
default:
- jj_la1[11] = jj_gen;
+ jj_la1[18] = jj_gen;
;
}
{if (true) return buff.toString();}
@@ -524,16 +883,17 @@ StringBuffer buff = new StringBuffer();
}
static final public String ArrayInitializer() throws ParseException {
-String expr = null;
-StringBuffer buff = new StringBuffer("(");
+String expr;
+final StringBuffer buff = new StringBuffer("(");
jj_consume_token(LPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
+ case LIST:
case PRINT:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -563,7 +923,16 @@ StringBuffer buff = new StringBuffer("(");
}
break;
default:
- jj_la1[12] = jj_gen;
+ jj_la1[19] = jj_gen;
+ ;
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case COMMA:
+ jj_consume_token(COMMA);
+ buff.append(",");
+ break;
+ default:
+ jj_la1[20] = jj_gen;
;
}
jj_consume_token(RPAREN);
@@ -572,58 +941,104 @@ StringBuffer buff = new StringBuffer("(");
throw new Error("Missing return statement in function");
}
+/**
+ * A Method Declaration.
+ * function MetodDeclarator() Block()
+ */
static final public void MethodDeclaration() throws ParseException {
- PHPFunctionDeclaration functionDeclaration;
- jj_consume_token(FUNCTION);
- functionDeclaration = MethodDeclarator();
- currentSegment.add(functionDeclaration);
- currentSegment = functionDeclaration;
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case LBRACE:
- Block();
- break;
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- default:
- jj_la1[13] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ final PHPFunctionDeclaration functionDeclaration;
+ Token functionToken;
+ functionToken = jj_consume_token(FUNCTION);
+ try {
+ functionDeclaration = MethodDeclarator();
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ {if (true) throw e;}
+ }
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', function identifier expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ if (currentSegment != null) {
+ currentSegment.add(functionDeclaration);
+ currentSegment = functionDeclaration;
+ }
+ currentFunction = functionDeclaration;
+ Block();
+ Hashtable parameters = currentFunction.getParameters();
+ Enumeration vars = parameters.elements();
+ while (vars.hasMoreElements()) {
+ PHPVarDeclaration o = (PHPVarDeclaration) vars.nextElement();
+ if (!o.getVariable().isUsed()) {
+ try {
+ setMarker(fileToParse,
+ "Parameter "+o.getVariable().getName()+" is never used in function",
+ functionToken.beginLine,
+ WARNING,
+ "Line " + token.beginLine);
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ }
+ }
+ currentFunction = null;
+ if (currentSegment != null) {
+ currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
}
- currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
}
+/**
+ * A MethodDeclarator.
+ * [&] IDENTIFIER(parameters ...).
+ * @return a function description for the outline
+ */
static final public PHPFunctionDeclaration MethodDeclarator() throws ParseException {
- Token identifier;
- StringBuffer methodDeclaration = new StringBuffer();
- String formalParameters;
- int pos = jj_input_stream.bufpos;
+ final Token identifier;
+ final StringBuffer methodDeclaration = new StringBuffer();
+ final Hashtable formalParameters;
+ final int pos = jj_input_stream.getPosition();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BIT_AND:
jj_consume_token(BIT_AND);
methodDeclaration.append("&");
break;
default:
- jj_la1[14] = jj_gen;
+ jj_la1[21] = jj_gen;
;
}
identifier = jj_consume_token(IDENTIFIER);
formalParameters = FormalParameters();
- methodDeclaration.append(identifier).append(formalParameters);
- {if (true) return new PHPFunctionDeclaration(currentSegment,methodDeclaration.toString(),pos);}
+ methodDeclaration.append(identifier);
+ {if (true) return new PHPFunctionDeclaration(currentSegment,methodDeclaration.toString(),pos,formalParameters);}
throw new Error("Missing return statement in function");
}
- static final public String FormalParameters() throws ParseException {
+/**
+ * FormalParameters follows method identifier.
+ * (FormalParameter())
+ */
+ static final public Hashtable FormalParameters() throws ParseException {
String expr;
- StringBuffer buff = new StringBuffer("(");
- jj_consume_token(LPAREN);
+ final StringBuffer buff = new StringBuffer("(");
+ PHPVarDeclaration var;
+ final Hashtable parameters = new Hashtable();
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', '(' expected after function identifier";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case DOLLAR:
case BIT_AND:
case DOLLAR_ID:
- expr = FormalParameter();
- buff.append(expr);
+ var = FormalParameter();
+ parameters.put(var.getVariable().getName(),var);
label_7:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -631,39 +1046,51 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[15] = jj_gen;
+ jj_la1[22] = jj_gen;
break label_7;
}
jj_consume_token(COMMA);
- expr = FormalParameter();
- buff.append(",").append(expr);
+ var = FormalParameter();
+ parameters.put(var.getVariable().getName(),var);
}
break;
default:
- jj_la1[16] = jj_gen;
+ jj_la1[23] = jj_gen;
;
}
- jj_consume_token(RPAREN);
- buff.append(")");
- {if (true) return buff.toString();}
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ {if (true) return parameters;}
throw new Error("Missing return statement in function");
}
- static final public String FormalParameter() throws ParseException {
- String expr;
- StringBuffer buff = new StringBuffer();
+/**
+ * A formal parameter.
+ * $varname[=value] (,$varname[=value])
+ */
+ static final public PHPVarDeclaration FormalParameter() throws ParseException {
+ final PHPVarDeclaration variableDeclaration;
+ Token token = null;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BIT_AND:
- jj_consume_token(BIT_AND);
- buff.append("&");
+ token = jj_consume_token(BIT_AND);
break;
default:
- jj_la1[17] = jj_gen;
+ jj_la1[24] = jj_gen;
;
}
- expr = VariableDeclarator();
- buff.append(expr);
- {if (true) return buff.toString();}
+ variableDeclaration = VariableDeclarator();
+ if (token != null) {
+ variableDeclaration.getVariable().setReference(true);
+ }
+ {if (true) return variableDeclaration;}
throw new Error("Missing return statement in function");
}
@@ -701,8 +1128,12 @@ StringBuffer buff = new StringBuffer("(");
jj_consume_token(INTEGER);
{if (true) return "integer";}
break;
+ case OBJECT:
+ jj_consume_token(OBJECT);
+ {if (true) return "object";}
+ break;
default:
- jj_la1[18] = jj_gen;
+ jj_la1[25] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -710,71 +1141,84 @@ StringBuffer buff = new StringBuffer("(");
}
static final public String Expression() throws ParseException {
- String expr;
- String assignOperator = null;
- String expr2 = null;
+ final String expr;
+ final String assignOperator;
+ final String expr2;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PRINT:
expr = PrintExpression();
{if (true) return expr;}
break;
- case ARRAY:
- case FALSE:
- case NEW:
- case NULL:
- case TRUE:
- case INTEGER_LITERAL:
- case FLOATING_POINT_LITERAL:
- case STRING_LITERAL:
- case IDENTIFIER:
- case LPAREN:
- case AT:
- case DOLLAR:
- case BANG:
- case INCR:
- case DECR:
- case PLUS:
- case MINUS:
- case BIT_AND:
- case DOLLAR_ID:
- expr = ConditionalExpression();
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case ASSIGN:
- case PLUSASSIGN:
- case MINUSASSIGN:
- case STARASSIGN:
- case SLASHASSIGN:
- case ANDASSIGN:
- case ORASSIGN:
- case XORASSIGN:
- case DOTASSIGN:
- case REMASSIGN:
- case LSHIFTASSIGN:
- case RSIGNEDSHIFTASSIGN:
- case RUNSIGNEDSHIFTASSIGN:
- assignOperator = AssignmentOperator();
- expr2 = Expression();
- break;
- default:
- jj_la1[19] = jj_gen;
- ;
- }
- if (expr2 == null) {
- {if (true) return expr;}
- } else {
- {if (true) return expr + assignOperator + expr2;}
- }
+ case LIST:
+ expr = ListExpression();
+ {if (true) return expr;}
break;
default:
- jj_la1[20] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ jj_la1[26] = jj_gen;
+ if (jj_2_3(2147483647)) {
+ expr = varAssignation();
+ {if (true) return expr;}
+ } else {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ expr = ConditionalExpression();
+ {if (true) return expr;}
+ break;
+ default:
+ jj_la1[27] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+ }
+ throw new Error("Missing return statement in function");
+ }
+
+/**
+ * A Variable assignation.
+ * varName (an assign operator) any expression
+ */
+ static final public String varAssignation() throws ParseException {
+ String varName,assignOperator,expr2;
+ PHPVarDeclaration variable;
+ final int pos = SimpleCharStream.getPosition();
+ varName = VariableDeclaratorId();
+ assignOperator = AssignmentOperator();
+ try {
+ expr2 = Expression();
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ {if (true) throw e;}
+ }
+ errorMessage = "expression expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
+ {if (true) return varName + assignOperator + expr2;}
throw new Error("Missing return statement in function");
}
static final public String AssignmentOperator() throws ParseException {
- Token assignOperator;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ASSIGN:
jj_consume_token(ASSIGN);
@@ -808,10 +1252,6 @@ StringBuffer buff = new StringBuffer("(");
jj_consume_token(RSIGNEDSHIFTASSIGN);
{if (true) return ">>=";}
break;
- case RUNSIGNEDSHIFTASSIGN:
- jj_consume_token(RUNSIGNEDSHIFTASSIGN);
- {if (true) return ">>>=";}
- break;
case ANDASSIGN:
jj_consume_token(ANDASSIGN);
{if (true) return "&=";}
@@ -828,8 +1268,12 @@ StringBuffer buff = new StringBuffer("(");
jj_consume_token(DOTASSIGN);
{if (true) return ".=";}
break;
+ case TILDEEQUAL:
+ jj_consume_token(TILDEEQUAL);
+ {if (true) return "~=";}
+ break;
default:
- jj_la1[21] = jj_gen;
+ jj_la1[28] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -837,7 +1281,7 @@ StringBuffer buff = new StringBuffer("(");
}
static final public String ConditionalExpression() throws ParseException {
- String expr;
+ final String expr;
String expr2 = null;
String expr3 = null;
expr = ConditionalOrExpression();
@@ -849,7 +1293,7 @@ StringBuffer buff = new StringBuffer("(");
expr3 = ConditionalExpression();
break;
default:
- jj_la1[22] = jj_gen;
+ jj_la1[29] = jj_gen;
;
}
if (expr3 == null) {
@@ -863,10 +1307,9 @@ StringBuffer buff = new StringBuffer("(");
static final public String ConditionalOrExpression() throws ParseException {
String expr;
Token operator;
- String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ConditionalAndExpression();
- buff.append(expr);
+ buff.append(expr);
label_8:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -875,7 +1318,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[23] = jj_gen;
+ jj_la1[30] = jj_gen;
break label_8;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -886,13 +1329,13 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(_ORL);
break;
default:
- jj_la1[24] = jj_gen;
+ jj_la1[31] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = ConditionalAndExpression();
+ expr = ConditionalAndExpression();
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
@@ -901,10 +1344,9 @@ StringBuffer buff = new StringBuffer("(");
static final public String ConditionalAndExpression() throws ParseException {
String expr;
Token operator;
- String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ConcatExpression();
- buff.append(expr);
+ buff.append(expr);
label_9:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -913,7 +1355,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[25] = jj_gen;
+ jj_la1[32] = jj_gen;
break label_9;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -924,24 +1366,23 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(_ANDL);
break;
default:
- jj_la1[26] = jj_gen;
+ jj_la1[33] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = ConcatExpression();
+ expr = ConcatExpression();
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
- {if (true) return buff.toString();}
+ {if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
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);
+ buff.append(expr);
label_10:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -949,24 +1390,22 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[27] = jj_gen;
+ jj_la1[34] = jj_gen;
break label_10;
}
jj_consume_token(DOT);
- expr2 = InclusiveOrExpression();
- buff.append(".");
- buff.append(expr2);
+ expr = InclusiveOrExpression();
+ buff.append(".").append(expr);
}
- {if (true) return buff.toString();}
+ {if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
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);
+ buff.append(expr);
label_11:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -974,22 +1413,20 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[28] = jj_gen;
+ jj_la1[35] = jj_gen;
break label_11;
}
jj_consume_token(BIT_OR);
- expr2 = ExclusiveOrExpression();
- buff.append("|");
- buff.append(expr2);
+ expr = ExclusiveOrExpression();
+ buff.append("|").append(expr);
}
- {if (true) return buff.toString();}
+ {if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
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:
@@ -999,13 +1436,13 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[29] = jj_gen;
+ jj_la1[36] = jj_gen;
break label_12;
}
jj_consume_token(XOR);
- expr2 = AndExpression();
+ expr = AndExpression();
buff.append("^");
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
@@ -1013,8 +1450,7 @@ StringBuffer buff = new StringBuffer("(");
static final public String AndExpression() throws ParseException {
String expr;
- String expr2 = null;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = EqualityExpression();
buff.append(expr);
label_13:
@@ -1024,23 +1460,21 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[30] = jj_gen;
+ jj_la1[37] = jj_gen;
break label_13;
}
jj_consume_token(BIT_AND);
- expr2 = EqualityExpression();
- buff.append("&");
- buff.append(expr2);
+ expr = EqualityExpression();
+ buff.append("&").append(expr);
}
- {if (true) return buff.toString();}
+ {if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
static final public String EqualityExpression() throws ParseException {
String expr;
Token operator;
- String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = RelationalExpression();
buff.append(expr);
label_14:
@@ -1048,27 +1482,47 @@ StringBuffer buff = new StringBuffer("(");
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case EQ:
case NE:
+ case DIF:
+ case BANGDOUBLEEQUAL:
+ case TRIPLEEQUAL:
;
break;
default:
- jj_la1[31] = jj_gen;
+ jj_la1[38] = jj_gen;
break label_14;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case EQ:
operator = jj_consume_token(EQ);
break;
+ case DIF:
+ operator = jj_consume_token(DIF);
+ break;
case NE:
operator = jj_consume_token(NE);
break;
+ case BANGDOUBLEEQUAL:
+ operator = jj_consume_token(BANGDOUBLEEQUAL);
+ break;
+ case TRIPLEEQUAL:
+ operator = jj_consume_token(TRIPLEEQUAL);
+ break;
default:
- jj_la1[32] = jj_gen;
+ jj_la1[39] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = RelationalExpression();
+ try {
+ expr = RelationalExpression();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected after '"+operator.image+"'";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
buff.append(operator.image);
- buff.append(expr2);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
@@ -1077,8 +1531,7 @@ StringBuffer buff = new StringBuffer("(");
static final public String RelationalExpression() throws ParseException {
String expr;
Token operator;
- String expr2;
- StringBuffer buff = new StringBuffer();
+ final StringBuffer buff = new StringBuffer();
expr = ShiftExpression();
buff.append(expr);
label_15:
@@ -1091,7 +1544,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[33] = jj_gen;
+ jj_la1[40] = jj_gen;
break label_15;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1108,13 +1561,12 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(GE);
break;
default:
- jj_la1[34] = jj_gen;
+ jj_la1[41] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = ShiftExpression();
- buff.append(operator.image);
- buff.append(expr2);
+ expr = ShiftExpression();
+ buff.append(operator.image).append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
@@ -1123,8 +1575,7 @@ StringBuffer buff = new StringBuffer("(");
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:
@@ -1136,7 +1587,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[35] = jj_gen;
+ jj_la1[42] = jj_gen;
break label_16;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1150,13 +1601,13 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(RUNSIGNEDSHIFT);
break;
default:
- jj_la1[36] = jj_gen;
+ jj_la1[43] = jj_gen;
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");
@@ -1165,8 +1616,7 @@ StringBuffer buff = new StringBuffer("(");
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:
@@ -1177,7 +1627,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[37] = jj_gen;
+ jj_la1[44] = jj_gen;
break label_17;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1188,13 +1638,13 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(MINUS);
break;
default:
- jj_la1[38] = jj_gen;
+ jj_la1[45] = jj_gen;
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");
@@ -1203,9 +1653,16 @@ StringBuffer buff = new StringBuffer("(");
static final public String MultiplicativeExpression() throws ParseException {
String expr;
Token operator;
- String expr2;
- StringBuffer buff = new StringBuffer();
- expr = UnaryExpression();
+ final StringBuffer buff = new StringBuffer();
+ try {
+ expr = UnaryExpression();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token '"+e.currentToken.next.image+"'";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
buff.append(expr);
label_18:
while (true) {
@@ -1216,7 +1673,7 @@ StringBuffer buff = new StringBuffer("(");
;
break;
default:
- jj_la1[39] = jj_gen;
+ jj_la1[46] = jj_gen;
break label_18;
}
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1230,60 +1687,107 @@ StringBuffer buff = new StringBuffer("(");
operator = jj_consume_token(REM);
break;
default:
- jj_la1[40] = jj_gen;
+ jj_la1[47] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
- expr2 = UnaryExpression();
- buff.append(operator.image);
- buff.append(expr2);
+ expr = UnaryExpression();
+ buff.append(operator.image);
+ buff.append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
+/**
+ * An unary expression starting with @, & or nothing
+ */
static final public String UnaryExpression() throws ParseException {
- String expr;
- StringBuffer buff = new StringBuffer();
+ final String expr;
+ final Token token;
+ final StringBuffer buff = new StringBuffer();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case BIT_AND:
+ token = jj_consume_token(BIT_AND);
+ expr = UnaryExpressionNoPrefix();
+ if (token == null) {
+ {if (true) return expr;}
+ }
+ {if (true) return token.image + expr;}
+ break;
+ case ARRAY:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
case AT:
- jj_consume_token(AT);
- expr = UnaryExpression();
- {if (true) return "@" + expr;}
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case DOLLAR_ID:
+ label_19:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case AT:
+ ;
+ break;
+ default:
+ jj_la1[48] = jj_gen;
+ break label_19;
+ }
+ jj_consume_token(AT);
+ buff.append("@");
+ }
+ expr = UnaryExpressionNoPrefix();
+ {if (true) return buff.append(expr).toString();}
break;
+ default:
+ jj_la1[49] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ throw new Error("Missing return statement in function");
+ }
+
+ static final public String UnaryExpressionNoPrefix() throws ParseException {
+ final String expr;
+ final Token token;
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PLUS:
case MINUS:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case PLUS:
- jj_consume_token(PLUS);
- buff.append("+");
+ token = jj_consume_token(PLUS);
break;
case MINUS:
- jj_consume_token(MINUS);
- buff.append("-");
+ token = jj_consume_token(MINUS);
break;
default:
- jj_la1[41] = jj_gen;
+ jj_la1[50] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
expr = UnaryExpression();
- buff.append(expr);
- {if (true) return buff.toString();}
+ {if (true) return token.image + expr;}
break;
case INCR:
- expr = PreIncrementExpression();
- {if (true) return expr;}
- break;
case DECR:
- expr = PreDecrementExpression();
+ expr = PreIncDecExpression();
{if (true) return expr;}
break;
case ARRAY:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -1291,37 +1795,40 @@ StringBuffer buff = new StringBuffer("(");
case LPAREN:
case DOLLAR:
case BANG:
- case BIT_AND:
case DOLLAR_ID:
expr = UnaryExpressionNotPlusMinus();
- {if (true) return buff.toString();}
+ {if (true) return expr;}
break;
default:
- jj_la1[42] = jj_gen;
+ jj_la1[51] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
- static final public String PreIncrementExpression() throws ParseException {
-String expr;
- jj_consume_token(INCR);
- expr = PrimaryExpression();
- {if (true) return "++"+expr;}
- throw new Error("Missing return statement in function");
- }
-
- static final public String PreDecrementExpression() throws ParseException {
-String expr;
- jj_consume_token(DECR);
+ static final public String PreIncDecExpression() throws ParseException {
+final String expr;
+final Token token;
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case INCR:
+ token = jj_consume_token(INCR);
+ break;
+ case DECR:
+ token = jj_consume_token(DECR);
+ break;
+ default:
+ jj_la1[52] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
expr = PrimaryExpression();
- {if (true) return "--"+expr;}
+ {if (true) return token.image + expr;}
throw new Error("Missing return statement in function");
}
static final public String UnaryExpressionNotPlusMinus() throws ParseException {
- String expr;
+ final String expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case BANG:
jj_consume_token(BANG);
@@ -1329,8 +1836,8 @@ String expr;
{if (true) return "!" + expr;}
break;
default:
- jj_la1[43] = jj_gen;
- if (jj_2_3(2147483647)) {
+ jj_la1[53] = jj_gen;
+ if (jj_2_4(2147483647)) {
expr = CastExpression();
{if (true) return expr;}
} else {
@@ -1339,14 +1846,13 @@ String expr;
case NEW:
case IDENTIFIER:
case DOLLAR:
- case BIT_AND:
case DOLLAR_ID:
expr = PostfixExpression();
{if (true) return expr;}
break;
- case FALSE:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -1356,11 +1862,19 @@ String expr;
case LPAREN:
jj_consume_token(LPAREN);
expr = Expression();
- jj_consume_token(RPAREN);
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
{if (true) return "("+expr+")";}
break;
default:
- jj_la1[44] = jj_gen;
+ jj_la1[54] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1370,10 +1884,29 @@ String expr;
}
static final public String CastExpression() throws ParseException {
-String type;
-String expr;
+final String type, expr;
jj_consume_token(LPAREN);
- type = Type();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case STRING:
+ case OBJECT:
+ case BOOL:
+ case BOOLEAN:
+ case REAL:
+ case DOUBLE:
+ case FLOAT:
+ case INT:
+ case INTEGER:
+ type = Type();
+ break;
+ case ARRAY:
+ jj_consume_token(ARRAY);
+ type = "array";
+ break;
+ default:
+ jj_la1[55] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
jj_consume_token(RPAREN);
expr = UnaryExpression();
{if (true) return "(" + type + ")" + expr;}
@@ -1381,7 +1914,7 @@ String expr;
}
static final public String PostfixExpression() throws ParseException {
- String expr;
+ final String expr;
Token operator = null;
expr = PrimaryExpression();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1395,13 +1928,13 @@ String expr;
operator = jj_consume_token(DECR);
break;
default:
- jj_la1[45] = jj_gen;
+ jj_la1[56] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
break;
default:
- jj_la1[46] = jj_gen;
+ jj_la1[57] = jj_gen;
;
}
if (operator == null) {
@@ -1412,15 +1945,15 @@ String expr;
}
static final public String PrimaryExpression() throws ParseException {
- Token identifier;
+ final Token identifier;
String expr;
- StringBuffer buff = new StringBuffer();
- if (jj_2_4(2)) {
+ final StringBuffer buff = new StringBuffer();
+ if (jj_2_5(2)) {
identifier = jj_consume_token(IDENTIFIER);
jj_consume_token(STATICCLASSACCESS);
expr = ClassIdentifier();
buff.append(identifier.image).append("::").append(expr);
- label_19:
+ label_20:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASSACCESS:
@@ -1429,8 +1962,8 @@ String expr;
;
break;
default:
- jj_la1[47] = jj_gen;
- break label_19;
+ jj_la1[58] = jj_gen;
+ break label_20;
}
expr = PrimarySuffix();
buff.append(expr);
@@ -1441,11 +1974,10 @@ String expr;
case NEW:
case IDENTIFIER:
case DOLLAR:
- case BIT_AND:
case DOLLAR_ID:
expr = PrimaryPrefix();
- buff.append(expr);
- label_20:
+ buff.append(expr);
+ label_21:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASSACCESS:
@@ -1454,21 +1986,20 @@ String expr;
;
break;
default:
- jj_la1[48] = jj_gen;
- break label_20;
+ jj_la1[59] = jj_gen;
+ break label_21;
}
expr = PrimarySuffix();
- buff.append(expr);
+ buff.append(expr);
}
{if (true) return buff.toString();}
break;
case ARRAY:
- jj_consume_token(ARRAY);
- expr = ArrayInitializer();
+ expr = ArrayDeclarator();
{if (true) return "array" + expr;}
break;
default:
- jj_la1[49] = jj_gen;
+ jj_la1[60] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1476,29 +2007,25 @@ String expr;
throw new Error("Missing return statement in function");
}
+ static final public String ArrayDeclarator() throws ParseException {
+ final String expr;
+ jj_consume_token(ARRAY);
+ expr = ArrayInitializer();
+ {if (true) return "array" + expr;}
+ throw new Error("Missing return statement in function");
+ }
+
static final public String PrimaryPrefix() throws ParseException {
- String expr;
- Token token = null;
+ final String expr;
+ final Token token;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
token = jj_consume_token(IDENTIFIER);
{if (true) return token.image;}
break;
case NEW:
- case BIT_AND:
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case BIT_AND:
- token = jj_consume_token(BIT_AND);
- break;
- default:
- jj_la1[50] = jj_gen;
- ;
- }
jj_consume_token(NEW);
expr = ClassIdentifier();
- if (token == null) {
- {if (true) return "new " + expr;}
- }
{if (true) return "new " + expr;}
break;
case DOLLAR:
@@ -1507,16 +2034,39 @@ String expr;
{if (true) return expr;}
break;
default:
- jj_la1[51] = jj_gen;
+ jj_la1[61] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
- static final public String ClassIdentifier() throws ParseException {
+ static final public String classInstantiation() throws ParseException {
String expr;
- Token token;
+ final StringBuffer buff = new StringBuffer("new ");
+ jj_consume_token(NEW);
+ expr = ClassIdentifier();
+ buff.append(expr);
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case NEW:
+ case IDENTIFIER:
+ case DOLLAR:
+ case DOLLAR_ID:
+ expr = PrimaryExpression();
+ buff.append(expr);
+ break;
+ default:
+ jj_la1[62] = jj_gen;
+ ;
+ }
+ {if (true) return buff.toString();}
+ throw new Error("Missing return statement in function");
+ }
+
+ static final public String ClassIdentifier() throws ParseException {
+ final String expr;
+ final Token token;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IDENTIFIER:
token = jj_consume_token(IDENTIFIER);
@@ -1528,7 +2078,7 @@ String expr;
{if (true) return expr;}
break;
default:
- jj_la1[52] = jj_gen;
+ jj_la1[63] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1536,7 +2086,7 @@ String expr;
}
static final public String PrimarySuffix() throws ParseException {
- String expr;
+ final String expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case LPAREN:
expr = Arguments();
@@ -1548,7 +2098,7 @@ String expr;
{if (true) return expr;}
break;
default:
- jj_la1[53] = jj_gen;
+ jj_la1[64] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1560,18 +2110,36 @@ String expr;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CLASSACCESS:
jj_consume_token(CLASSACCESS);
- expr = VariableName();
+ try {
+ expr = VariableName();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', function call or field access expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
{if (true) return "->" + expr;}
break;
case LBRACKET:
jj_consume_token(LBRACKET);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
+ case LIST:
case PRINT:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
+ case STRING:
+ case OBJECT:
+ case BOOL:
+ case BOOLEAN:
+ case REAL:
+ case DOUBLE:
+ case FLOAT:
+ case INT:
+ case INTEGER:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -1586,20 +2154,67 @@ String expr;
case MINUS:
case BIT_AND:
case DOLLAR_ID:
- expr = Expression();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ expr = Expression();
+ break;
+ case STRING:
+ case OBJECT:
+ case BOOL:
+ case BOOLEAN:
+ case REAL:
+ case DOUBLE:
+ case FLOAT:
+ case INT:
+ case INTEGER:
+ expr = Type();
+ break;
+ default:
+ jj_la1[65] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
break;
default:
- jj_la1[54] = jj_gen;
+ jj_la1[66] = jj_gen;
;
}
- jj_consume_token(RBRACKET);
+ try {
+ jj_consume_token(RBRACKET);
+ } catch (ParseException e) {
+ errorMessage = "']' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
if(expr == null) {
{if (true) return "[]";}
}
{if (true) return "[" + expr + "]";}
break;
default:
- jj_la1[55] = jj_gen;
+ jj_la1[67] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1607,8 +2222,8 @@ String expr;
}
static final public String Literal() throws ParseException {
- String expr;
- Token token;
+ final String expr;
+ final Token token;
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INTEGER_LITERAL:
token = jj_consume_token(INTEGER_LITERAL);
@@ -1619,26 +2234,20 @@ String expr;
{if (true) return token.image;}
break;
case STRING_LITERAL:
- try {
- token = jj_consume_token(STRING_LITERAL);
+ token = jj_consume_token(STRING_LITERAL);
{if (true) return token.image;}
- } catch (TokenMgrError e) {
- errorMessage = "unterminated string";
- errorLevel = ERROR;
- {if (true) throw generateParseException();}
- }
break;
- case FALSE:
case TRUE:
+ case FALSE:
expr = BooleanLiteral();
{if (true) return expr;}
break;
case NULL:
- expr = NullLiteral();
- {if (true) return expr;}
+ jj_consume_token(NULL);
+ {if (true) return "null";}
break;
default:
- jj_la1[56] = jj_gen;
+ jj_la1[68] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1656,29 +2265,24 @@ String expr;
{if (true) return "false";}
break;
default:
- jj_la1[57] = jj_gen;
+ jj_la1[69] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
- static final public String NullLiteral() throws ParseException {
- jj_consume_token(NULL);
- {if (true) return "null";}
- throw new Error("Missing return statement in function");
- }
-
static final public String Arguments() throws ParseException {
String expr = null;
jj_consume_token(LPAREN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
+ case LIST:
case PRINT:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -1696,14 +2300,16 @@ String expr = null;
expr = ArgumentList();
break;
default:
- jj_la1[58] = jj_gen;
+ jj_la1[70] = jj_gen;
;
}
try {
jj_consume_token(RPAREN);
} catch (ParseException e) {
- errorMessage = "')' expected to close the argument list";
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ')' expected to close the argument list";
errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
{if (true) throw e;}
}
if (expr == null) {
@@ -1715,18 +2321,18 @@ String expr = null;
static final public String ArgumentList() throws ParseException {
String expr;
-StringBuffer buff = new StringBuffer();
+final StringBuffer buff = new StringBuffer();
expr = Expression();
buff.append(expr);
- label_21:
+ label_22:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[59] = jj_gen;
- break label_21;
+ jj_la1[71] = jj_gen;
+ break label_22;
}
jj_consume_token(COMMA);
try {
@@ -1734,33 +2340,34 @@ StringBuffer buff = new StringBuffer();
} catch (ParseException e) {
errorMessage = "expression expected after a comma in argument list";
errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
{if (true) throw e;}
}
- buff.append(",").append("expr");
+ buff.append(",").append(expr);
}
{if (true) return buff.toString();}
throw new Error("Missing return statement in function");
}
-/*
- * Statement syntax follows.
+/**
+ * A Statement without break
*/
- static final public void Statement() throws ParseException {
- if (jj_2_5(2)) {
+ static final public void StatementNoBreak() throws ParseException {
+ if (jj_2_6(2)) {
Expression();
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
+ try {
jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[60] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ } catch (ParseException e) {
+ if (e.currentToken.next.kind != 4) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
- } else if (jj_2_6(2)) {
+ } else if (jj_2_7(2)) {
LabeledStatement();
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -1776,14 +2383,15 @@ StringBuffer buff = new StringBuffer();
case DOLLAR:
case INCR:
case DECR:
- case BIT_AND:
case DOLLAR_ID:
StatementExpression();
try {
jj_consume_token(SEMICOLON);
} catch (ParseException e) {
- errorMessage = "';' expected after expression";
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
{if (true) throw e;}
}
break;
@@ -1802,8 +2410,8 @@ StringBuffer buff = new StringBuffer();
case FOR:
ForStatement();
break;
- case BREAK:
- BreakStatement();
+ case FOREACH:
+ ForeachStatement();
break;
case CONTINUE:
ContinueStatement();
@@ -1818,6 +2426,15 @@ StringBuffer buff = new StringBuffer();
case REQUIRE:
case INCLUDE_ONCE:
case REQUIRE_ONCE:
+ case AT:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case AT:
+ jj_consume_token(AT);
+ break;
+ default:
+ jj_la1[72] = jj_gen;
+ ;
+ }
IncludeStatement();
break;
case STATIC:
@@ -1827,89 +2444,139 @@ StringBuffer buff = new StringBuffer();
GlobalStatement();
break;
default:
- jj_la1[61] = jj_gen;
+ jj_la1[73] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
}
- static final public void IncludeStatement() throws ParseException {
+/**
+ * A Normal statement
+ */
+ static final public void Statement() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
case REQUIRE:
- jj_consume_token(REQUIRE);
- Expression();
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ StatementNoBreak();
+ break;
+ case BREAK:
+ BreakStatement();
+ break;
+ default:
+ jj_la1[74] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+
+ static final public void htmlBlock() throws ParseException {
+ jj_consume_token(PHPEND);
+ label_23:
+ while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
+ case PHPECHOSTART:
+ ;
break;
default:
- jj_la1[62] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ jj_la1[75] = jj_gen;
+ break label_23;
}
+ phpEchoBlock();
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPSTARTLONG:
+ jj_consume_token(PHPSTARTLONG);
+ break;
+ case PHPSTARTSHORT:
+ jj_consume_token(PHPSTARTSHORT);
+ break;
+ default:
+ jj_la1[76] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+
+/**
+ * An include statement. It's "include" an expression;
+ */
+ static final public void IncludeStatement() throws ParseException {
+ final String expr;
+ final Token token;
+ final int pos = jj_input_stream.getPosition();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case REQUIRE:
+ token = jj_consume_token(REQUIRE);
break;
case REQUIRE_ONCE:
- jj_consume_token(REQUIRE_ONCE);
- Expression();
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[63] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
- }
+ token = jj_consume_token(REQUIRE_ONCE);
break;
case INCLUDE:
- jj_consume_token(INCLUDE);
- Expression();
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[64] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
- }
+ token = jj_consume_token(INCLUDE);
break;
case INCLUDE_ONCE:
- jj_consume_token(INCLUDE_ONCE);
- Expression();
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[65] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
- }
+ token = jj_consume_token(INCLUDE_ONCE);
break;
default:
- jj_la1[66] = jj_gen;
+ jj_la1[77] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
+ expr = Expression();
+ if (currentSegment != null) {
+ currentSegment.add(new PHPReqIncDeclaration(currentSegment, token.image,pos,expr));
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
static final public String PrintExpression() throws ParseException {
- StringBuffer buff = new StringBuffer("print ");
- String expr;
+ final StringBuffer buff = new StringBuffer("print ");
+ final String expr;
jj_consume_token(PRINT);
expr = Expression();
buff.append(expr);
@@ -1917,99 +2584,166 @@ StringBuffer buff = new StringBuffer();
throw new Error("Missing return statement in function");
}
+ static final public String ListExpression() throws ParseException {
+ final StringBuffer buff = new StringBuffer("list(");
+ String expr;
+ jj_consume_token(LIST);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', '(' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case DOLLAR:
+ case DOLLAR_ID:
+ expr = VariableDeclaratorId();
+ buff.append(expr);
+ break;
+ default:
+ jj_la1[78] = jj_gen;
+ ;
+ }
+ label_24:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case COMMA:
+ ;
+ break;
+ default:
+ jj_la1[79] = jj_gen;
+ break label_24;
+ }
+ try {
+ jj_consume_token(COMMA);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ',' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ expr = VariableDeclaratorId();
+ buff.append(",").append(expr);
+ }
+ buff.append(")");
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ')' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ASSIGN:
+ jj_consume_token(ASSIGN);
+ expr = Expression();
+ buff.append("(").append(expr);
+ break;
+ default:
+ jj_la1[80] = jj_gen;
+ ;
+ }
+ {if (true) return buff.toString();}
+ throw new Error("Missing return statement in function");
+ }
+
+/**
+ * An echo statement is like this : echo anyexpression (, otherexpression)*
+ */
static final public void EchoStatement() throws ParseException {
jj_consume_token(ECHO);
Expression();
- label_22:
+ label_25:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[67] = jj_gen;
- break label_22;
+ jj_la1[81] = jj_gen;
+ break label_25;
}
jj_consume_token(COMMA);
Expression();
}
try {
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
- jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[68] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
- }
+ jj_consume_token(SEMICOLON);
} catch (ParseException e) {
- errorMessage = "';' expected after 'echo' statement";
- errorLevel = ERROR;
- {if (true) throw e;}
+ if (e.currentToken.next.kind != 4) {
+ errorMessage = "';' expected after 'echo' statement";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
}
static final public void GlobalStatement() throws ParseException {
+ final int pos = jj_input_stream.getPosition();
+ String expr;
jj_consume_token(GLOBAL);
- VariableDeclaratorId();
- label_23:
+ expr = VariableDeclaratorId();
+ if (currentSegment != null) {
+ currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr));
+ }
+ label_26:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[69] = jj_gen;
- break label_23;
+ jj_la1[82] = jj_gen;
+ break label_26;
}
jj_consume_token(COMMA);
- VariableDeclaratorId();
+ expr = VariableDeclaratorId();
+ if (currentSegment != null) {
+ currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr));
}
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
+ }
+ try {
jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[70] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
}
static final public void StaticStatement() throws ParseException {
jj_consume_token(STATIC);
VariableDeclarator();
- label_24:
+ label_27:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[71] = jj_gen;
- break label_24;
+ jj_la1[83] = jj_gen;
+ break label_27;
}
jj_consume_token(COMMA);
VariableDeclarator();
}
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
+ try {
jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[72] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
}
@@ -2020,14 +2754,25 @@ StringBuffer buff = new StringBuffer();
}
static final public void Block() throws ParseException {
- jj_consume_token(LBRACE);
- label_25:
+ try {
+ jj_consume_token(LBRACE);
+ } catch (ParseException e) {
+ errorMessage = "'{' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ label_28:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPEND:
case CLASS:
case FUNCTION:
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -2036,17 +2781,17 @@ StringBuffer buff = new StringBuffer();
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
- case FALSE:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2066,18 +2811,79 @@ StringBuffer buff = new StringBuffer();
;
break;
default:
- jj_la1[73] = jj_gen;
- break label_25;
+ jj_la1[84] = jj_gen;
+ break label_28;
}
- BlockStatement();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case CLASS:
+ case FUNCTION:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ BlockStatement();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[85] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+ try {
+ jj_consume_token(RBRACE);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.image +"', '}' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
- jj_consume_token(RBRACE);
}
static final public void BlockStatement() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -2086,17 +2892,17 @@ StringBuffer buff = new StringBuffer();
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
- case FALSE:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2122,26 +2928,97 @@ StringBuffer buff = new StringBuffer();
MethodDeclaration();
break;
default:
- jj_la1[74] = jj_gen;
+ jj_la1[86] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+
+/**
+ * A Block statement that will not contain any 'break'
+ */
+ static final public void BlockStatementNoBreak() throws ParseException {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ StatementNoBreak();
+ break;
+ case CLASS:
+ ClassDeclaration();
+ break;
+ case FUNCTION:
+ MethodDeclaration();
+ break;
+ default:
+ jj_la1[87] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
static final public void LocalVariableDeclaration() throws ParseException {
- VariableDeclarator();
- label_26:
+ LocalVariableDeclarator();
+ label_29:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[75] = jj_gen;
- break label_26;
+ jj_la1[88] = jj_gen;
+ break label_29;
}
jj_consume_token(COMMA);
- VariableDeclarator();
+ LocalVariableDeclarator();
+ }
+ }
+
+ static final public void LocalVariableDeclarator() throws ParseException {
+ VariableDeclaratorId();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ASSIGN:
+ jj_consume_token(ASSIGN);
+ Expression();
+ break;
+ default:
+ jj_la1[89] = jj_gen;
+ ;
}
}
@@ -2152,22 +3029,17 @@ StringBuffer buff = new StringBuffer();
static final public void StatementExpression() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INCR:
- PreIncrementExpression();
- break;
case DECR:
- PreDecrementExpression();
+ PreIncDecExpression();
break;
case ARRAY:
case NEW:
case IDENTIFIER:
case DOLLAR:
- case BIT_AND:
case DOLLAR_ID:
PrimaryExpression();
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ASSIGN:
- case INCR:
- case DECR:
case PLUSASSIGN:
case MINUSASSIGN:
case STARASSIGN:
@@ -2177,9 +3049,11 @@ StringBuffer buff = new StringBuffer();
case XORASSIGN:
case DOTASSIGN:
case REMASSIGN:
+ case TILDEEQUAL:
+ case INCR:
+ case DECR:
case LSHIFTASSIGN:
case RSIGNEDSHIFTASSIGN:
- case RUNSIGNEDSHIFTASSIGN:
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case INCR:
jj_consume_token(INCR);
@@ -2197,37 +3071,80 @@ StringBuffer buff = new StringBuffer();
case XORASSIGN:
case DOTASSIGN:
case REMASSIGN:
+ case TILDEEQUAL:
case LSHIFTASSIGN:
case RSIGNEDSHIFTASSIGN:
- case RUNSIGNEDSHIFTASSIGN:
AssignmentOperator();
Expression();
break;
default:
- jj_la1[76] = jj_gen;
+ jj_la1[90] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
break;
default:
- jj_la1[77] = jj_gen;
+ jj_la1[91] = jj_gen;
;
}
break;
default:
- jj_la1[78] = jj_gen;
+ jj_la1[92] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
static final public void SwitchStatement() throws ParseException {
+ final int pos = jj_input_stream.getPosition();
jj_consume_token(SWITCH);
- jj_consume_token(LPAREN);
- Expression();
- jj_consume_token(RPAREN);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after 'switch'";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ Expression();
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ {if (true) throw e;}
+ }
+ errorMessage = "expression expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LBRACE:
+ switchStatementBrace();
+ break;
+ case COLON:
+ switchStatementColon(pos, pos + 6);
+ break;
+ default:
+ jj_la1[93] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+
+ static final public void switchStatementBrace() throws ParseException {
jj_consume_token(LBRACE);
- label_27:
+ label_30:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case CASE:
@@ -2235,17 +3152,332 @@ StringBuffer buff = new StringBuffer();
;
break;
default:
- jj_la1[79] = jj_gen;
- break label_27;
+ jj_la1[94] = jj_gen;
+ break label_30;
}
- SwitchLabel();
- label_28:
+ switchLabel0();
+ }
+ try {
+ jj_consume_token(RBRACE);
+ } catch (ParseException e) {
+ errorMessage = "'}' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ }
+
+/**
+ * A Switch statement with : ... endswitch;
+ * @param start the begin offset of the switch
+ * @param end the end offset of the switch
+ */
+ static final public void switchStatementColon(final int start, final int end) throws ParseException {
+ jj_consume_token(COLON);
+ try {
+ setMarker(fileToParse,
+ "Ugly syntax detected, you should switch () {...} instead of switch (): ... enswitch;",
+ start,
+ end,
+ INFO,
+ "Line " + token.beginLine);
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ label_31:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case CASE:
+ case _DEFAULT:
+ ;
+ break;
+ default:
+ jj_la1[95] = jj_gen;
+ break label_31;
+ }
+ switchLabel0();
+ }
+ try {
+ jj_consume_token(ENDSWITCH);
+ } catch (ParseException e) {
+ errorMessage = "'endswitch' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'endswitch' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ }
+
+ static final public void switchLabel0() throws ParseException {
+ Token breakToken = null;
+ final int line;
+ line = SwitchLabel();
+ label_32:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPEND:
+ case CLASS:
+ case FUNCTION:
+ case IF:
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ ;
+ break;
+ default:
+ jj_la1[96] = jj_gen;
+ break label_32;
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case CLASS:
+ case FUNCTION:
+ case IF:
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ BlockStatementNoBreak();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[97] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case BREAK:
+ breakToken = BreakStatement();
+ break;
+ default:
+ jj_la1[98] = jj_gen;
+ ;
+ }
+ try {
+ if (breakToken == null) {
+ setMarker(fileToParse,
+ "You should use put a 'break' at the end of your statement",
+ line,
+ INFO,
+ "Line " + line);
+ }
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ }
+
+ static final public Token BreakStatement() throws ParseException {
+ final Token token;
+ token = jj_consume_token(BREAK);
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Expression();
+ break;
+ default:
+ jj_la1[99] = jj_gen;
+ ;
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'break' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ {if (true) return token;}
+ throw new Error("Missing return statement in function");
+ }
+
+ static final public int SwitchLabel() throws ParseException {
+ final Token token;
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case CASE:
+ token = jj_consume_token(CASE);
+ try {
+ Expression();
+ } catch (ParseException e) {
+ if (errorMessage != null) {if (true) throw e;}
+ errorMessage = "expression expected after 'case' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(COLON);
+ } catch (ParseException e) {
+ errorMessage = "':' expected after case expression";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ {if (true) return token.beginLine;}
+ break;
+ case _DEFAULT:
+ token = jj_consume_token(_DEFAULT);
+ try {
+ jj_consume_token(COLON);
+ } catch (ParseException e) {
+ errorMessage = "':' expected after 'default' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ {if (true) return token.beginLine;}
+ break;
+ default:
+ jj_la1[100] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ throw new Error("Missing return statement in function");
+ }
+
+ static final public void IfStatement() throws ParseException {
+ final Token token;
+ final int pos = jj_input_stream.getPosition();
+ token = jj_consume_token(IF);
+ Condition("if");
+ IfStatement0(pos,pos+token.image.length());
+ }
+
+ static final public void Condition(final String keyword) throws ParseException {
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after " + keyword + " keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length();
+ errorEnd = errorStart +1;
+ processParseException(e);
+ }
+ Expression();
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected after " + keyword + " keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ }
+
+ static final public void IfStatement0(final int start,final int end) throws ParseException {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case COLON:
+ jj_consume_token(COLON);
+ label_33:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case CLASS:
- case FUNCTION:
+ case PHPEND:
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -2254,17 +3486,63 @@ StringBuffer buff = new StringBuffer();
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ ;
+ break;
+ default:
+ jj_la1[101] = jj_gen;
+ break label_33;
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2281,78 +3559,404 @@ StringBuffer buff = new StringBuffer();
case MINUS:
case BIT_AND:
case DOLLAR_ID:
+ Statement();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[102] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
+ label_34:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ELSEIF:
;
break;
default:
- jj_la1[80] = jj_gen;
- break label_28;
+ jj_la1[103] = jj_gen;
+ break label_34;
}
- BlockStatement();
+ ElseIfStatementColon();
}
- }
- jj_consume_token(RBRACE);
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ELSE:
+ ElseStatementColon();
+ break;
+ default:
+ jj_la1[104] = jj_gen;
+ ;
+ }
+ 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);
}
-
- static final public void SwitchLabel() throws ParseException {
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case CASE:
- jj_consume_token(CASE);
- Expression();
- jj_consume_token(COLON);
+ try {
+ jj_consume_token(ENDIF);
+ } catch (ParseException e) {
+ errorMessage = "'endif' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'endif' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
break;
- case _DEFAULT:
- jj_consume_token(_DEFAULT);
- jj_consume_token(COLON);
+ case PHPEND:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Statement();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[105] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ label_35:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ELSEIF:
+ ;
+ break;
+ default:
+ jj_la1[106] = jj_gen;
+ break label_35;
+ }
+ ElseIfStatement();
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ELSE:
+ jj_consume_token(ELSE);
+ try {
+ Statement();
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ {if (true) throw e;}
+ }
+ errorMessage = "unexpected token '"+e.currentToken.next.image+"', a statement was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ break;
+ default:
+ jj_la1[107] = jj_gen;
+ ;
+ }
break;
default:
- jj_la1[81] = jj_gen;
+ jj_la1[108] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
- static final public void IfStatement() throws ParseException {
- jj_consume_token(IF);
- Condition("if");
- Statement();
- label_29:
+ static final public void ElseIfStatementColon() throws ParseException {
+ jj_consume_token(ELSEIF);
+ Condition("elseif");
+ jj_consume_token(COLON);
+ label_36:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case ELSEIF:
+ case PHPEND:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
;
break;
default:
- jj_la1[82] = jj_gen;
- break label_29;
+ jj_la1[109] = jj_gen;
+ break label_36;
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Statement();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[110] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
}
- ElseIfStatement();
- }
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case ELSE:
- jj_consume_token(ELSE);
- Statement();
- break;
- default:
- jj_la1[83] = jj_gen;
- ;
}
}
- static final public void Condition(String keyword) throws ParseException {
- try {
- jj_consume_token(LPAREN);
- } catch (ParseException e) {
- errorMessage = "'(' expected after " + keyword + " keyword";
- errorLevel = ERROR;
- {if (true) throw e;}
- }
- Expression();
- try {
- jj_consume_token(RPAREN);
- } catch (ParseException e) {
- errorMessage = "')' expected after " + keyword + " keyword";
- errorLevel = ERROR;
- {if (true) throw e;}
+ static final public void ElseStatementColon() throws ParseException {
+ jj_consume_token(ELSE);
+ jj_consume_token(COLON);
+ label_37:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PHPEND:
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ ;
+ break;
+ default:
+ jj_la1[111] = jj_gen;
+ break label_37;
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Statement();
+ break;
+ case PHPEND:
+ htmlBlock();
+ break;
+ default:
+ jj_la1[112] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
}
}
@@ -2363,20 +3967,24 @@ StringBuffer buff = new StringBuffer();
}
static final public void WhileStatement() throws ParseException {
- jj_consume_token(WHILE);
+ final Token token;
+ final int pos = jj_input_stream.getPosition();
+ 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);
- label_30:
+ label_38:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -2385,17 +3993,17 @@ StringBuffer buff = new StringBuffer();
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
- case FALSE:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2415,27 +4023,44 @@ StringBuffer buff = new StringBuffer();
;
break;
default:
- jj_la1[84] = jj_gen;
- break label_30;
+ jj_la1[113] = jj_gen;
+ break label_38;
}
Statement();
}
- jj_consume_token(ENDWHILE);
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
+ 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;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
- break;
- default:
- jj_la1[85] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'endwhile' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
break;
case IF:
case ARRAY:
+ case BREAK:
+ case LIST:
case PRINT:
case ECHO:
case INCLUDE:
@@ -2444,17 +4069,17 @@ StringBuffer buff = new StringBuffer();
case REQUIRE_ONCE:
case GLOBAL:
case STATIC:
- case BREAK:
case CONTINUE:
case DO:
- case FALSE:
case FOR:
case NEW:
case NULL:
case RETURN:
case SWITCH:
case TRUE:
+ case FALSE:
case WHILE:
+ case FOREACH:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2474,7 +4099,7 @@ StringBuffer buff = new StringBuffer();
Statement();
break;
default:
- jj_la1[86] = jj_gen;
+ jj_la1[114] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -2485,23 +4110,111 @@ StringBuffer buff = new StringBuffer();
Statement();
jj_consume_token(WHILE);
Condition("while");
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case SEMICOLON:
+ try {
jj_consume_token(SEMICOLON);
- break;
- case 127:
- jj_consume_token(127);
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ }
+
+ static final public void ForeachStatement() throws ParseException {
+ jj_consume_token(FOREACH);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after 'foreach' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ Variable();
+ } catch (ParseException e) {
+ errorMessage = "variable expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ label_39:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case CLASSACCESS:
+ case LBRACKET:
+ ;
+ break;
+ default:
+ jj_la1[115] = jj_gen;
+ break label_39;
+ }
+ VariableSuffix();
+ }
+ try {
+ jj_consume_token(AS);
+ } catch (ParseException e) {
+ errorMessage = "'as' expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ Variable();
+ } catch (ParseException e) {
+ errorMessage = "variable expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAYASSIGN:
+ jj_consume_token(ARRAYASSIGN);
+ Expression();
break;
default:
- jj_la1[87] = jj_gen;
- jj_consume_token(-1);
- throw new ParseException();
+ jj_la1[116] = jj_gen;
+ ;
+ }
+ try {
+ jj_consume_token(RPAREN);
+ } catch (ParseException e) {
+ errorMessage = "')' expected after 'foreach' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ Statement();
+ } catch (ParseException e) {
+ if (errorMessage != null) {if (true) throw e;}
+ errorMessage = "statement expected";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
}
}
static final public void ForStatement() throws ParseException {
- jj_consume_token(FOR);
- jj_consume_token(LPAREN);
+final Token token;
+final int pos = jj_input_stream.getPosition();
+ token = jj_consume_token(FOR);
+ try {
+ jj_consume_token(LPAREN);
+ } catch (ParseException e) {
+ errorMessage = "'(' expected after 'for' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
case NEW:
@@ -2509,22 +4222,22 @@ StringBuffer buff = new StringBuffer();
case DOLLAR:
case INCR:
case DECR:
- case BIT_AND:
case DOLLAR_ID:
ForInit();
break;
default:
- jj_la1[88] = jj_gen;
+ jj_la1[117] = jj_gen;
;
}
jj_consume_token(SEMICOLON);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
+ case LIST:
case PRINT:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2542,7 +4255,7 @@ StringBuffer buff = new StringBuffer();
Expression();
break;
default:
- jj_la1[89] = jj_gen;
+ jj_la1[118] = jj_gen;
;
}
jj_consume_token(SEMICOLON);
@@ -2553,20 +4266,146 @@ StringBuffer buff = new StringBuffer();
case DOLLAR:
case INCR:
case DECR:
- case BIT_AND:
case DOLLAR_ID:
- ForUpdate();
+ StatementExpressionList();
break;
default:
- jj_la1[90] = jj_gen;
+ jj_la1[119] = jj_gen;
;
}
jj_consume_token(RPAREN);
- Statement();
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Statement();
+ break;
+ case COLON:
+ jj_consume_token(COLON);
+ label_40:
+ while (true) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IF:
+ case ARRAY:
+ case BREAK:
+ case LIST:
+ case PRINT:
+ case ECHO:
+ case INCLUDE:
+ case REQUIRE:
+ case INCLUDE_ONCE:
+ case REQUIRE_ONCE:
+ case GLOBAL:
+ case STATIC:
+ case CONTINUE:
+ case DO:
+ case FOR:
+ case NEW:
+ case NULL:
+ case RETURN:
+ case SWITCH:
+ case TRUE:
+ case FALSE:
+ case WHILE:
+ case FOREACH:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case IDENTIFIER:
+ case LPAREN:
+ case LBRACE:
+ case SEMICOLON:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ ;
+ break;
+ default:
+ jj_la1[120] = jj_gen;
+ break label_40;
+ }
+ Statement();
+ }
+ 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;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'endfor' keyword";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
+ break;
+ default:
+ jj_la1[121] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
}
static final public void ForInit() throws ParseException {
- if (jj_2_7(2147483647)) {
+ if (jj_2_8(2147483647)) {
LocalVariableDeclaration();
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
@@ -2576,12 +4415,11 @@ StringBuffer buff = new StringBuffer();
case DOLLAR:
case INCR:
case DECR:
- case BIT_AND:
case DOLLAR_ID:
StatementExpressionList();
break;
default:
- jj_la1[91] = jj_gen;
+ jj_la1[122] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -2590,60 +4428,72 @@ StringBuffer buff = new StringBuffer();
static final public void StatementExpressionList() throws ParseException {
StatementExpression();
- label_31:
+ label_41:
while (true) {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case COMMA:
;
break;
default:
- jj_la1[92] = jj_gen;
- break label_31;
+ jj_la1[123] = jj_gen;
+ break label_41;
}
jj_consume_token(COMMA);
StatementExpression();
}
}
- static final public void ForUpdate() throws ParseException {
- StatementExpressionList();
- }
-
- static final public void BreakStatement() throws ParseException {
- jj_consume_token(BREAK);
- switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
- case IDENTIFIER:
- jj_consume_token(IDENTIFIER);
- break;
- default:
- jj_la1[93] = jj_gen;
- ;
- }
- jj_consume_token(SEMICOLON);
- }
-
static final public void ContinueStatement() throws ParseException {
jj_consume_token(CONTINUE);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case ARRAY:
+ case LIST:
+ case PRINT:
+ case NEW:
+ case NULL:
+ case TRUE:
+ case FALSE:
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
case IDENTIFIER:
- jj_consume_token(IDENTIFIER);
+ case LPAREN:
+ case AT:
+ case DOLLAR:
+ case BANG:
+ case INCR:
+ case DECR:
+ case PLUS:
+ case MINUS:
+ case BIT_AND:
+ case DOLLAR_ID:
+ Expression();
break;
default:
- jj_la1[94] = jj_gen;
+ jj_la1[124] = jj_gen;
;
}
- jj_consume_token(SEMICOLON);
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'continue' statement";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
static final public void ReturnStatement() throws ParseException {
jj_consume_token(RETURN);
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
case ARRAY:
+ case LIST:
case PRINT:
- case FALSE:
case NEW:
case NULL:
case TRUE:
+ case FALSE:
case INTEGER_LITERAL:
case FLOATING_POINT_LITERAL:
case STRING_LITERAL:
@@ -2661,10 +4511,18 @@ StringBuffer buff = new StringBuffer();
Expression();
break;
default:
- jj_la1[95] = jj_gen;
+ jj_la1[125] = jj_gen;
;
}
- jj_consume_token(SEMICOLON);
+ try {
+ jj_consume_token(SEMICOLON);
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'return' statement";
+ errorLevel = ERROR;
+ errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = jj_input_stream.getPosition() + 1;
+ {if (true) throw e;}
+ }
}
static final private boolean jj_2_1(int xla) {
@@ -2716,178 +4574,157 @@ StringBuffer buff = new StringBuffer();
return retval;
}
- static final private boolean jj_3R_43() {
- if (jj_scan_token(BOOL)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
+ static final private boolean jj_2_8(int xla) {
+ jj_la = xla; jj_lastpos = jj_scanpos = token;
+ boolean retval = !jj_3_8();
+ jj_save(7, xla);
+ return retval;
}
- static final private boolean jj_3R_135() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_137()) {
- jj_scanpos = xsp;
- if (jj_3R_138()) {
- jj_scanpos = xsp;
- if (jj_3R_139()) {
- jj_scanpos = xsp;
- if (jj_3R_140()) {
- jj_scanpos = xsp;
- if (jj_3R_141()) return true;
+ static final private boolean jj_3R_58() {
+ if (jj_3R_88()) 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;
return false;
}
- static final private boolean jj_3R_137() {
- if (jj_scan_token(BANG)) return true;
+ static final private boolean jj_3R_102() {
+ if (jj_scan_token(COMMA)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_119()) 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_3R_34() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_42()) {
- jj_scanpos = xsp;
- if (jj_3R_43()) {
- jj_scanpos = xsp;
- if (jj_3R_44()) {
- jj_scanpos = xsp;
- if (jj_3R_45()) {
- jj_scanpos = xsp;
- if (jj_3R_46()) {
- jj_scanpos = xsp;
- if (jj_3R_47()) {
- jj_scanpos = xsp;
- if (jj_3R_48()) {
- jj_scanpos = xsp;
- if (jj_3R_49()) return true;
+ static final private boolean jj_3R_57() {
+ if (jj_3R_44()) 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;
- } 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_42() {
- if (jj_scan_token(STRING)) return true;
+ static final private boolean jj_3R_56() {
+ if (jj_3R_87()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_132() {
- if (jj_scan_token(MINUS)) return true;
+ static final private boolean jj_3R_101() {
+ if (jj_3R_52()) 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(DECR)) return true;
+ static final private boolean jj_3_4() {
+ if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_136()) return true;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_45()) {
+ jj_scanpos = xsp;
+ if (jj_3R_46()) 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;
return false;
}
- static final private boolean jj_3R_53() {
- if (jj_scan_token(COMMA)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_52()) return true;
+ static final private boolean jj_3R_47() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_55()) {
+ jj_scanpos = xsp;
+ if (jj_3R_56()) {
+ jj_scanpos = xsp;
+ if (jj_3R_57()) {
+ jj_scanpos = xsp;
+ if (jj_3R_58()) 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_130() {
- if (jj_scan_token(REM)) return true;
+ static final private boolean jj_3R_55() {
+ if (jj_3R_86()) 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(INCR)) return true;
+ static final private boolean jj_3R_165() {
+ if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_136()) return true;
+ if (jj_3R_47()) 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_127() {
- if (jj_3R_135()) return true;
+ static final private boolean jj_3R_164() {
+ if (jj_3R_169()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_126() {
- if (jj_3R_134()) return true;
+ static final private boolean jj_3R_160() {
+ 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_125() {
- if (jj_3R_133()) return true;
+ static final private boolean jj_3R_163() {
+ if (jj_3R_168()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_129() {
- if (jj_scan_token(SLASH)) return true;
+ static final private boolean jj_3R_162() {
+ if (jj_3R_167()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_39() {
- if (jj_3R_52()) return true;
+ static final private boolean jj_3R_87() {
+ if (jj_scan_token(LIST)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ 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_101()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_53()) { jj_scanpos = xsp; break; }
+ if (jj_3R_102()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
- return false;
- }
-
- static final private boolean jj_3R_131() {
- if (jj_scan_token(PLUS)) return true;
+ if (jj_scan_token(RPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ xsp = jj_scanpos;
+ 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_124() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_131()) {
- jj_scanpos = xsp;
- if (jj_3R_132()) 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_119()) return true;
+ static final private boolean jj_3R_85() {
+ 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_119() {
+ static final private boolean jj_3R_158() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_123()) {
+ if (jj_3R_161()) {
jj_scanpos = xsp;
- if (jj_3R_124()) {
+ if (jj_3R_162()) {
jj_scanpos = xsp;
- if (jj_3R_125()) {
+ if (jj_3R_163()) {
jj_scanpos = xsp;
- if (jj_3R_126()) {
+ if (jj_3R_164()) {
jj_scanpos = xsp;
- if (jj_3R_127()) return true;
+ if (jj_3R_165()) 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;
@@ -2896,1040 +4733,1282 @@ StringBuffer buff = new StringBuffer();
return false;
}
- static final private boolean jj_3R_123() {
- if (jj_scan_token(AT)) return true;
+ static final private boolean jj_3R_161() {
+ if (jj_scan_token(BANG)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_119()) return true;
+ if (jj_3R_141()) 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(RUNSIGNEDSHIFT)) return true;
+ static final private boolean jj_3R_84() {
+ 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_122() {
- if (jj_scan_token(MINUS)) return true;
+ static final private boolean jj_3R_83() {
+ 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_128() {
- if (jj_scan_token(STAR)) return true;
+ static final private boolean jj_3R_82() {
+ 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_120() {
+ static final private boolean jj_3R_159() {
+ 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_156() {
+ 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_157() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_128()) {
- jj_scanpos = xsp;
- if (jj_3R_129()) {
+ if (jj_3R_159()) {
jj_scanpos = xsp;
- if (jj_3R_130()) return true;
+ if (jj_3R_160()) 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_119()) return true;
+ if (jj_3R_166()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_38() {
- if (jj_scan_token(IDENTIFIER)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(COLON)) return true;
+ static final private boolean jj_3R_81() {
+ 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_113() {
- if (jj_scan_token(GE)) return true;
+ static final private boolean jj_3R_86() {
+ if (jj_scan_token(PRINT)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_114() {
- if (jj_3R_119()) return true;
+ static final private boolean jj_3R_80() {
+ if (jj_scan_token(REAL)) 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_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
return false;
}
- static final private boolean jj_3_2() {
- if (jj_scan_token(COMMA)) return true;
+ static final private boolean jj_3R_79() {
+ if (jj_scan_token(BOOLEAN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_33()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_78() {
+ 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_174() {
- if (jj_3R_33()) return true;
+ static final private boolean jj_3R_149() {
+ if (jj_scan_token(REM)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3_2()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
return false;
}
- static final private boolean jj_3R_117() {
- if (jj_scan_token(RSIGNEDSHIFT)) return true;
+ static final private boolean jj_3R_154() {
+ if (jj_3R_158()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_121() {
- if (jj_scan_token(PLUS)) return true;
+ static final private boolean jj_3R_77() {
+ 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_115() {
+ static final private boolean jj_3R_54() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_121()) {
+ if (jj_3R_77()) {
+ jj_scanpos = xsp;
+ if (jj_3R_78()) {
+ jj_scanpos = xsp;
+ if (jj_3R_79()) {
+ jj_scanpos = xsp;
+ if (jj_3R_80()) {
+ jj_scanpos = xsp;
+ if (jj_3R_81()) {
+ jj_scanpos = xsp;
+ if (jj_3R_82()) {
+ jj_scanpos = xsp;
+ if (jj_3R_83()) {
+ jj_scanpos = xsp;
+ if (jj_3R_84()) {
jj_scanpos = xsp;
- if (jj_3R_122()) return true;
+ if (jj_3R_85()) 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_114()) return true;
+ } 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;
+ } 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_153() {
+ if (jj_3R_157()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_112() {
- if (jj_scan_token(LE)) return true;
+ static final private boolean jj_3R_155() {
+ 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_163() {
- if (jj_scan_token(LPAREN)) return true;
+ static final private boolean jj_3R_150() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_152()) {
+ jj_scanpos = xsp;
+ if (jj_3R_153()) {
+ jj_scanpos = xsp;
+ 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;
+ return false;
+ }
+
+ static final private boolean jj_3R_152() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_174()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RPAREN)) return true;
+ if (jj_3R_155()) {
+ jj_scanpos = xsp;
+ if (jj_3R_156()) 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_141()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_108() {
- if (jj_3R_114()) return true;
+ static final private boolean jj_3R_151() {
+ if (jj_scan_token(AT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_146() {
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_115()) { jj_scanpos = xsp; break; }
+ if (jj_3R_151()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
+ if (jj_3R_150()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_175() {
- if (jj_scan_token(ARRAYASSIGN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ static final private boolean jj_3R_148() {
+ 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_33() {
- if (jj_3R_35()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ static final private boolean jj_3R_141() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_175()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_145()) {
+ jj_scanpos = xsp;
+ if (jj_3R_146()) 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_56() {
- if (jj_scan_token(PRINT)) return true;
+ static final private boolean jj_3R_145() {
+ if (jj_scan_token(BIT_AND)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ if (jj_3R_150()) 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(LSHIFT)) return true;
+ static final private boolean jj_3R_140() {
+ 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_97() {
- if (jj_scan_token(LBRACE)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RBRACE)) return true;
+ static final private boolean jj_3R_147() {
+ 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_109() {
+ static final private boolean jj_3R_142() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_116()) {
+ if (jj_3R_147()) {
jj_scanpos = xsp;
- if (jj_3R_117()) {
+ if (jj_3R_148()) {
jj_scanpos = xsp;
- if (jj_3R_118()) 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;
} else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_108()) return true;
+ if (jj_3R_141()) 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(GT)) return true;
+ static final private boolean jj_3R_144() {
+ 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_104() {
- if (jj_3R_108()) return true;
+ static final private boolean jj_3R_135() {
+ 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_136() {
+ 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_109()) { 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_68() {
- if (jj_3R_35()) return true;
+ static final private boolean jj_3R_139() {
+ 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_63() {
- if (jj_scan_token(DOLLAR)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_54()) return true;
+ static final private boolean jj_3R_134() {
+ 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_110() {
- if (jj_scan_token(LT)) return true;
+ static final private boolean jj_3R_143() {
+ 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_105() {
+ static final private boolean jj_3R_137() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_110()) {
- jj_scanpos = xsp;
- if (jj_3R_111()) {
- jj_scanpos = xsp;
- if (jj_3R_112()) {
+ if (jj_3R_143()) {
jj_scanpos = xsp;
- if (jj_3R_113()) return true;
+ if (jj_3R_144()) 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_104()) return true;
+ if (jj_3R_136()) 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(NE)) return true;
+ static final private boolean jj_3R_130() {
+ if (jj_3R_136()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_137()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_90() {
- if (jj_scan_token(LBRACE)) return true;
+ static final private boolean jj_3_8() {
+ if (jj_3R_49()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_133() {
+ if (jj_scan_token(GT)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RBRACE)) return true;
+ return false;
+ }
+
+ static final private boolean jj_3_7() {
+ if (jj_3R_48()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_62() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_138() {
+ 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_131() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_97()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_138()) {
+ jj_scanpos = xsp;
+ if (jj_3R_139()) {
+ jj_scanpos = xsp;
+ 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;
+ if (jj_3R_130()) 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_123() {
+ if (jj_3R_130()) 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_131()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_61() {
- if (jj_scan_token(LBRACE)) return true;
+ static final private boolean jj_3_6() {
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ if (jj_scan_token(SEMICOLON)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RBRACE)) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_132() {
+ 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_54() {
+ static final private boolean jj_3R_124() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_61()) {
+ if (jj_3R_132()) {
jj_scanpos = xsp;
- if (jj_3R_62()) {
+ if (jj_3R_133()) {
jj_scanpos = xsp;
- if (jj_3R_63()) return true;
+ if (jj_3R_134()) {
+ jj_scanpos = xsp;
+ if (jj_3R_135()) 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_123()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_37() {
- if (jj_scan_token(127)) return true;
+ static final private boolean jj_3R_121() {
+ if (jj_3R_123()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_124()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_85() {
- if (jj_scan_token(DOLLAR)) return true;
+ static final private boolean jj_3R_205() {
+ if (jj_scan_token(COMMA)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_54()) return true;
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_106() {
- if (jj_scan_token(EQ)) return true;
+ static final private boolean jj_3R_204() {
+ if (jj_3R_47()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_205()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
+ return false;
+ }
+
+ static final private boolean jj_3R_129() {
+ 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_103() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_106()) {
- jj_scanpos = xsp;
- if (jj_3R_107()) return true;
+ static final private boolean jj_3R_128() {
+ if (jj_scan_token(BANGDOUBLEEQUAL)) 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;
+ return false;
+ }
+
+ static final private boolean jj_3R_127() {
+ 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_36() {
- if (jj_scan_token(SEMICOLON)) return true;
+ static final private boolean jj_3R_126() {
+ 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_84() {
- if (jj_scan_token(DOLLAR_ID)) return true;
+ static final private boolean jj_3R_125() {
+ if (jj_scan_token(EQ)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_90()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_67() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_84()) {
- jj_scanpos = xsp;
- if (jj_3R_85()) return true;
+ static final private boolean jj_3R_202() {
+ if (jj_3R_204()) 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_100() {
- if (jj_3R_102()) return true;
+ static final private boolean jj_3R_200() {
+ 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_122() {
Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_103()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
+ xsp = jj_scanpos;
+ if (jj_3R_125()) {
+ jj_scanpos = xsp;
+ if (jj_3R_126()) {
+ jj_scanpos = xsp;
+ if (jj_3R_127()) {
+ jj_scanpos = xsp;
+ if (jj_3R_128()) {
+ jj_scanpos = xsp;
+ if (jj_3R_129()) 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_121()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_1() {
- if (jj_3R_32()) return true;
+ static final private boolean jj_3_2() {
+ if (jj_scan_token(COMMA)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_43()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_6() {
- if (jj_3R_38()) return true;
+ static final private boolean jj_3R_119() {
+ if (jj_3R_121()) 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_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_59() {
- if (jj_3R_67()) return true;
+ static final private boolean jj_3R_199() {
+ if (jj_3R_43()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_1()) { jj_scanpos = xsp; break; }
+ if (jj_3_2()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3_5() {
- if (jj_3R_35()) return true;
+ static final private boolean jj_3R_201() {
+ 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_36()) {
- jj_scanpos = xsp;
- if (jj_3R_37()) return true;
+ 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;
- } else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_101() {
+ static final private boolean jj_3R_194() {
+ 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_199()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ 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_120() {
if (jj_scan_token(BIT_AND)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_100()) return true;
+ if (jj_3R_119()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_60() {
- if (jj_scan_token(ASSIGN)) return true;
+ static final private boolean jj_3R_196() {
+ if (jj_scan_token(FALSE)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_68()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_195() {
+ 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_98() {
- if (jj_3R_100()) return true;
+ static final private boolean jj_3R_185() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_195()) {
+ jj_scanpos = xsp;
+ if (jj_3R_196()) 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_117() {
+ if (jj_3R_119()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_101()) { jj_scanpos = xsp; break; }
+ if (jj_3R_120()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_52() {
- if (jj_3R_59()) return true;
+ 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_47()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_43() {
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_60()) 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_178() {
- if (jj_scan_token(COMMA)) return true;
+ static final private boolean jj_3R_176() {
+ 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_89() {
+ if (jj_scan_token(ASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_177() {
- if (jj_3R_35()) return true;
+ static final private boolean jj_3R_95() {
+ if (jj_3R_54()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3R_178()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
return false;
}
- static final private boolean jj_3R_99() {
- if (jj_scan_token(XOR)) return true;
+ static final private boolean jj_3R_175() {
+ if (jj_3R_185()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_98()) return true;
+ 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;
+ if (jj_3R_59()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_95() {
- if (jj_3R_98()) return true;
+ static final private boolean jj_3R_174() {
+ 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_99()) { jj_scanpos = xsp; break; }
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- }
return false;
}
- static final private boolean jj_3R_176() {
- if (jj_3R_177()) return true;
+ static final private boolean jj_3R_118() {
+ if (jj_scan_token(XOR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_117()) 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(LPAREN)) return true;
+ 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_169() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_176()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RPAREN)) return true;
+ if (jj_3R_172()) {
+ jj_scanpos = xsp;
+ if (jj_3R_173()) {
+ jj_scanpos = xsp;
+ if (jj_3R_174()) {
+ jj_scanpos = xsp;
+ if (jj_3R_175()) {
+ jj_scanpos = xsp;
+ if (jj_3R_176()) 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;
return false;
}
- static final private boolean jj_3R_96() {
- if (jj_scan_token(BIT_OR)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_95()) return true;
+ static final private boolean jj_3R_172() {
+ 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_91() {
- if (jj_3R_95()) return true;
+ static final private boolean jj_3R_115() {
+ if (jj_3R_117()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_96()) { jj_scanpos = xsp; break; }
+ 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_160() {
- if (jj_scan_token(NULL)) return true;
+ static final private boolean jj_3R_94() {
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_165() {
- if (jj_scan_token(FALSE)) return true;
+ static final private boolean jj_3R_62() {
+ Token xsp;
+ xsp = jj_scanpos;
+ 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;
return false;
}
- static final private boolean jj_3R_159() {
+ static final private boolean jj_3R_59() {
+ if (jj_3R_52()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_164()) {
- jj_scanpos = xsp;
- if (jj_3R_165()) 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_89()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_164() {
- if (jj_scan_token(TRUE)) return true;
+ static final private boolean jj_3R_116() {
+ if (jj_scan_token(BIT_OR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_115()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_153() {
- if (jj_3R_160()) return true;
+ static final private boolean jj_3R_111() {
+ if (jj_3R_115()) 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_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_94() {
- if (jj_scan_token(_ANDL)) return true;
+ static final private boolean jj_3R_49() {
+ if (jj_3R_59()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_60()) { jj_scanpos = xsp; break; }
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ }
return false;
}
- static final private boolean jj_3R_92() {
- if (jj_scan_token(DOT)) return true;
+ static final private boolean jj_3R_51() {
+ if (jj_scan_token(LBRACKET)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_91()) return true;
+ Token xsp;
+ xsp = jj_scanpos;
+ 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;
}
- static final private boolean jj_3R_152() {
- if (jj_3R_159()) return true;
+ static final private boolean jj_3R_114() {
+ 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_86() {
- if (jj_3R_91()) return true;
+ static final private boolean jj_3R_112() {
+ if (jj_scan_token(DOT)) return true;
+ 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_106() {
+ 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_92()) { 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_151() {
- if (jj_scan_token(STRING_LITERAL)) return true;
+ static final private boolean jj_3R_93() {
+ 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_150() {
- if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
+ static final private boolean jj_3R_50() {
+ if (jj_scan_token(CLASSACCESS)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_61()) 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_42() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_149()) {
- jj_scanpos = xsp;
- if (jj_3R_150()) {
- jj_scanpos = xsp;
- if (jj_3R_151()) {
- jj_scanpos = xsp;
- if (jj_3R_152()) {
+ if (jj_3R_50()) {
jj_scanpos = xsp;
- if (jj_3R_153()) return true;
+ if (jj_3R_51()) 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;
return false;
}
- static final private boolean jj_3R_149() {
- if (jj_scan_token(INTEGER_LITERAL)) return true;
+ static final private boolean jj_3R_110() {
+ if (jj_scan_token(LBRACE)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_47()) 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_55() {
- if (jj_3R_35()) return true;
+ static final private boolean jj_3R_198() {
+ if (jj_3R_42()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_93() {
+ static final private boolean jj_3R_109() {
+ 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_92() {
+ if (jj_scan_token(DOLLAR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_61()) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ return false;
+ }
+
+ static final private boolean jj_3R_113() {
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_89() {
- if (jj_scan_token(_ORL)) return true;
+ static final private boolean jj_3R_197() {
+ if (jj_3R_201()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_87() {
+ static final private boolean jj_3R_193() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_93()) {
+ if (jj_3R_197()) {
jj_scanpos = xsp;
- if (jj_3R_94()) return true;
+ if (jj_3R_198()) 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_86()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_107() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_113()) {
+ jj_scanpos = xsp;
+ 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_106()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_69() {
- if (jj_3R_86()) return true;
+ static final private boolean jj_3R_104() {
+ if (jj_3R_106()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_87()) { jj_scanpos = xsp; break; }
+ if (jj_3R_107()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_41() {
- 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_55()) 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_65() {
+ static final private boolean jj_3R_99() {
if (jj_scan_token(HOOK)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ if (jj_3R_47()) 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_57()) return true;
+ if (jj_3R_88()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_40() {
- if (jj_scan_token(CLASSACCESS)) return true;
+ static final private boolean jj_3R_192() {
+ if (jj_3R_52()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_54()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_191() {
+ 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_32() {
+ static final private boolean jj_3R_182() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_40()) {
+ if (jj_3R_191()) {
jj_scanpos = xsp;
- if (jj_3R_41()) return true;
+ if (jj_3R_192()) 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_169() {
- if (jj_3R_32()) return true;
+ static final private boolean jj_3R_91() {
+ if (jj_scan_token(IDENTIFIER)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_110()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_88() {
- if (jj_scan_token(SC_OR)) return true;
+ static final private boolean jj_3R_90() {
+ if (jj_scan_token(LBRACE)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_47()) 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_70() {
+ static final private boolean jj_3R_61() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_88()) {
+ if (jj_3R_90()) {
jj_scanpos = xsp;
- if (jj_3R_89()) return true;
+ if (jj_3R_91()) {
+ jj_scanpos = xsp;
+ if (jj_3R_92()) {
+ jj_scanpos = xsp;
+ if (jj_3R_93()) 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_69()) return true;
+ } 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_100() {
+ if (jj_scan_token(LBRACE)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_47()) 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_168() {
- if (jj_3R_173()) return true;
+ static final private boolean jj_3R_108() {
+ 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_166() {
+ static final private boolean jj_3R_105() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_168()) {
+ if (jj_3R_108()) {
jj_scanpos = xsp;
- if (jj_3R_169()) return true;
+ if (jj_3R_109()) 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;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_64() {
- if (jj_3R_69()) return true;
+ static final private boolean jj_3R_98() {
+ if (jj_3R_104()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_70()) { jj_scanpos = xsp; break; }
+ if (jj_3R_105()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_172() {
- if (jj_3R_59()) return true;
+ static final private boolean jj_3R_48() {
+ 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_171() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_97() {
+ if (jj_scan_token(DOLLAR)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_61()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_167() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_171()) {
- jj_scanpos = xsp;
- if (jj_3R_172()) return true;
+ static final private boolean jj_3R_188() {
+ if (jj_3R_52()) 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_39()) return true;
+ static final private boolean jj_3R_96() {
+ 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_100()) jj_scanpos = xsp;
+ else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_156() {
- if (jj_3R_59()) return true;
+ static final private boolean jj_3R_63() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_96()) {
+ jj_scanpos = xsp;
+ 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;
return false;
}
- static final private boolean jj_3R_57() {
- if (jj_3R_64()) return true;
+ static final private boolean jj_3R_88() {
+ if (jj_3R_98()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_65()) jj_scanpos = xsp;
+ if (jj_3R_99()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_158() {
- if (jj_scan_token(DECR)) return true;
+ static final private boolean jj_3R_187() {
+ if (jj_scan_token(NEW)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_182()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_161() {
- if (jj_scan_token(BIT_AND)) return true;
+ 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_155() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_161()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(NEW)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_167()) return true;
+ static final private boolean jj_3R_186() {
+ 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_147() {
+ static final private boolean jj_3R_177() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_154()) {
+ if (jj_3R_186()) {
jj_scanpos = xsp;
- if (jj_3R_155()) {
+ if (jj_3R_187()) {
jj_scanpos = xsp;
- if (jj_3R_156()) return true;
+ if (jj_3R_188()) 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_154() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ static final private boolean jj_3R_76() {
+ 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_83() {
- if (jj_scan_token(DOTASSIGN)) return true;
+ static final private boolean jj_3_1() {
+ if (jj_3R_42()) 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(ORASSIGN)) return true;
+ static final private boolean jj_3R_75() {
+ 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_81() {
- if (jj_scan_token(XORASSIGN)) return true;
+ static final private boolean jj_3R_178() {
+ if (jj_scan_token(ARRAY)) return true;
+ if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ if (jj_3R_194()) 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(ANDASSIGN)) return true;
+ static final private boolean jj_3R_74() {
+ 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_79() {
- if (jj_scan_token(RUNSIGNEDSHIFTASSIGN)) return true;
+ static final private boolean jj_3R_73() {
+ 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_143() {
- if (jj_scan_token(ARRAY)) return true;
+ static final private boolean jj_3R_72() {
+ if (jj_scan_token(ANDASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_163()) return true;
+ return false;
+ }
+
+ static final private boolean jj_3R_52() {
+ if (jj_3R_63()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3_1()) { jj_scanpos = xsp; break; }
+ 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_71() {
if (jj_scan_token(RSIGNEDSHIFTASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_77() {
- if (jj_scan_token(LSHIFTASSIGN)) return true;
+ 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_148() {
+ static final private boolean jj_3R_181() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_157()) {
+ if (jj_3R_189()) {
jj_scanpos = xsp;
- if (jj_3R_158()) return true;
+ if (jj_3R_190()) 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_157() {
- if (jj_scan_token(INCR)) return true;
+ static final private boolean jj_3R_70() {
+ 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_76() {
- if (jj_scan_token(MINUSASSIGN)) return true;
+ static final private boolean jj_3R_171() {
+ if (jj_3R_178()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_162() {
- if (jj_3R_166()) return true;
+ static final private boolean jj_3R_184() {
+ if (jj_3R_193()) 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_69() {
+ 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_68() {
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_142() {
- if (jj_3R_147()) return true;
+ static final private boolean jj_3R_170() {
+ if (jj_3R_177()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_162()) { jj_scanpos = xsp; break; }
+ if (jj_3R_184()) { jj_scanpos = xsp; break; }
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
}
return false;
}
- static final private boolean jj_3R_74() {
+ static final private boolean jj_3R_67() {
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_73() {
+ static final private boolean jj_3R_66() {
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_170() {
- if (jj_3R_166()) return true;
+ static final private boolean jj_3R_183() {
+ if (jj_3R_193()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_72() {
+ static final private boolean jj_3R_65() {
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_71() {
- 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_66() {
+ static final private boolean jj_3R_53() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_71()) {
+ if (jj_3R_64()) {
jj_scanpos = xsp;
- if (jj_3R_72()) {
+ if (jj_3R_65()) {
jj_scanpos = xsp;
- if (jj_3R_73()) {
+ if (jj_3R_66()) {
jj_scanpos = xsp;
- if (jj_3R_74()) {
+ if (jj_3R_67()) {
jj_scanpos = xsp;
- if (jj_3R_75()) {
+ if (jj_3R_68()) {
jj_scanpos = xsp;
- if (jj_3R_76()) {
+ if (jj_3R_69()) {
jj_scanpos = xsp;
- if (jj_3R_77()) {
+ if (jj_3R_70()) {
jj_scanpos = xsp;
- if (jj_3R_78()) {
+ if (jj_3R_71()) {
jj_scanpos = xsp;
- if (jj_3R_79()) {
+ if (jj_3R_72()) {
jj_scanpos = xsp;
- if (jj_3R_80()) {
+ if (jj_3R_73()) {
jj_scanpos = xsp;
- if (jj_3R_81()) {
+ if (jj_3R_74()) {
jj_scanpos = xsp;
- if (jj_3R_82()) {
+ if (jj_3R_75()) {
jj_scanpos = xsp;
- if (jj_3R_83()) return true;
+ if (jj_3R_76()) 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;
@@ -3946,163 +6025,113 @@ StringBuffer buff = new StringBuffer();
return false;
}
- static final private boolean jj_3_4() {
+ static final private boolean jj_3R_64() {
+ 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_180() {
+ if (jj_scan_token(ARRAY)) 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_167()) return true;
+ if (jj_3R_182()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3R_170()) { jj_scanpos = xsp; break; }
+ if (jj_3R_183()) { jj_scanpos = xsp; break; }
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_166() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_4()) {
+ if (jj_3_5()) {
jj_scanpos = xsp;
- if (jj_3R_142()) {
+ if (jj_3R_170()) {
jj_scanpos = xsp;
- if (jj_3R_143()) return true;
+ if (jj_3R_171()) 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_58() {
- if (jj_3R_66()) return true;
+ static final private boolean jj_3R_103() {
+ if (jj_scan_token(ASSIGN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_145() {
- if (jj_3R_136()) return true;
+ static final private boolean jj_3R_179() {
+ if (jj_3R_54()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_148()) jj_scanpos = xsp;
- else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_51() {
- if (jj_3R_57()) return true;
+ static final private boolean jj_3R_168() {
+ if (jj_3R_166()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
Token xsp;
xsp = jj_scanpos;
- if (jj_3R_58()) jj_scanpos = xsp;
+ if (jj_3R_181()) jj_scanpos = xsp;
else if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_35() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_50()) {
- jj_scanpos = xsp;
- if (jj_3R_51()) 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_50() {
- if (jj_3R_56()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_144() {
- if (jj_scan_token(LPAREN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_34()) 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;
- if (jj_3R_119()) return true;
+ static final private boolean jj_3R_44() {
+ if (jj_3R_52()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- return false;
- }
-
- static final private boolean jj_3R_49() {
- if (jj_scan_token(INTEGER)) 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_48() {
- if (jj_scan_token(INT)) return true;
+ if (jj_3R_47()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3_3() {
- if (jj_scan_token(LPAREN)) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_34()) return true;
- if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_scan_token(RPAREN)) return true;
+ static final private boolean jj_3R_46() {
+ 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_141() {
+ static final private boolean jj_3R_167() {
if (jj_scan_token(LPAREN)) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
- if (jj_3R_35()) return true;
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_179()) {
+ jj_scanpos = xsp;
+ if (jj_3R_180()) 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;
- return false;
- }
-
- static final private boolean jj_3R_47() {
- 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_140() {
- if (jj_3R_146()) 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(DOUBLE)) return true;
+ if (jj_3R_141()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
- static final private boolean jj_3R_139() {
- if (jj_3R_145()) return true;
+ static final private boolean jj_3_3() {
+ if (jj_3R_44()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
static final private boolean jj_3R_45() {
- 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_44() {
- 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_138() {
- if (jj_3R_144()) return true;
+ if (jj_3R_54()) return true;
if (jj_la == 0 && jj_scanpos == jj_lastpos) return false;
return false;
}
@@ -4117,12 +6146,35 @@ StringBuffer buff = new StringBuffer();
static public boolean lookingAhead = false;
static private boolean jj_semLA;
static private int jj_gen;
- static final private int[] jj_la1 = new int[96];
- static final private int[] jj_la1_0 = {0x2,0x7fcb0000,0x0,0x60000,0x60000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x400000,0x0,0x0,0x80000000,0x80000000,0x400000,0x0,0x0,0x0,0x80000000,0xc00000,0x80000000,0x0,0x0,0xc00000,0x0,0x0,0x7f480000,0x0,0x0,0x0,0x0,0x1e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x7fcb0000,0x7fcb0000,0x0,0x0,0x0,0x400000,0x0,0x7fcb0000,0x0,0x100000,0x200000,0x7fc80000,0x0,0x7fc80000,0x0,0x400000,0xc00000,0x400000,0x400000,0x0,0x0,0x0,0xc00000,};
- static final private int[] jj_la1_1 = {0x0,0xd76a4,0x100,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x43200,0x0,0x0,0x0,0x0,0x0,0x3fa00000,0x0,0x43200,0x0,0x0,0x40000000,0x40000000,0x80000000,0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43200,0x0,0x43200,0x0,0x0,0x0,0x0,0x1000,0x0,0x1000,0x0,0x0,0x43200,0x0,0x42200,0x40200,0x43200,0x0,0x0,0x954a4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd76a4,0xd76a4,0x0,0x0,0x0,0x1000,0x48,0xd76a4,0x48,0x0,0x0,0xd76a4,0x0,0xd76a4,0x0,0x1000,0x43200,0x1000,0x1000,0x0,0x0,0x0,0x43200,};
- static final private int[] jj_la1_2 = {0x0,0x11914451,0x0,0x0,0x0,0x200000,0x2000000,0x10000,0x1000000,0x10000,0x1010400,0x0,0x11804451,0x110000,0x0,0x200000,0x1000000,0x0,0x0,0x2000000,0x11804451,0x2000000,0x20000000,0x0,0x0,0x0,0x0,0x400000,0x0,0x0,0x0,0x80000000,0x80000000,0xc000000,0xc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11804451,0x10000000,0x1004451,0x0,0x0,0x44000,0x44000,0x1000400,0x0,0x1000400,0x1000400,0x44000,0x11804451,0x40000,0x51,0x0,0x11804451,0x200000,0x100000,0x1110400,0x100000,0x100000,0x100000,0x100000,0x0,0x200000,0x100000,0x200000,0x100000,0x200000,0x100000,0x11914451,0x11914451,0x200000,0x2000000,0x2000000,0x1000400,0x0,0x11914451,0x0,0x0,0x0,0x11914451,0x100000,0x51914451,0x100000,0x1000400,0x11804451,0x1000400,0x1000400,0x200000,0x400,0x400,0x11804451,};
- static final private int[] jj_la1_3 = {0x0,0x400009e0,0x0,0x0,0x0,0x0,0x0,0x0,0x40000000,0x0,0x0,0x0,0x400009e0,0x0,0x800,0x0,0x40000800,0x800,0x0,0x3ffc0000,0x400009e0,0x3ffc0000,0x0,0x8,0x8,0x10,0x10,0x0,0x1000,0x2000,0x800,0x4,0x4,0x3,0x3,0x38000,0x38000,0x180,0x180,0x4600,0x4600,0x180,0x400009e0,0x0,0x40000800,0x60,0x60,0x0,0x0,0x40000800,0x800,0x40000800,0x40000000,0x0,0x400009e0,0x0,0x0,0x0,0x400009e0,0x0,0x80000000,0x40000860,0x80000000,0x80000000,0x80000000,0x80000000,0x0,0x0,0x80000000,0x0,0x80000000,0x0,0x80000000,0x400009e0,0x400009e0,0x0,0x3ffc0060,0x3ffc0060,0x40000860,0x0,0x400009e0,0x0,0x0,0x0,0x400009e0,0x80000000,0x400009e0,0x80000000,0x40000860,0x400009e0,0x40000860,0x40000860,0x0,0x0,0x0,0x400009e0,};
- static final private JJCalls[] jj_2_rtns = new JJCalls[7];
+ static final private int[] jj_la1 = new int[126];
+ static private int[] jj_la1_0;
+ static private int[] jj_la1_1;
+ static private int[] jj_la1_2;
+ static private int[] jj_la1_3;
+ static private int[] jj_la1_4;
+ static {
+ jj_la1_0();
+ jj_la1_1();
+ jj_la1_2();
+ jj_la1_3();
+ jj_la1_4();
+ }
+ private static void jj_la1_0() {
+ jj_la1_0 = new int[] {0xfcb0001e,0x6,0x6,0xfcb0001e,0x0,0xfcb00000,0x0,0x600000,0x600000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4000000,0x0,0x34000000,0x0,0x0,0x0,0x0,0x0,0x0,0x30000000,0x4000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4000000,0x0,0x4000000,0x0,0x0,0x4000000,0x4000000,0x0,0x0,0x0,0x0,0x4000000,0x0,0x4000000,0x0,0x0,0x34000000,0x34000000,0x0,0x0,0x0,0x34000000,0x0,0x0,0xc4800000,0xfc800000,0x8,0x6,0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0xfcb00010,0xfcb00010,0xfcb00000,0xf4b00000,0x0,0x0,0x0,0x0,0x4000000,0x0,0x0,0x0,0xf4b00010,0xf4b00010,0x8000000,0x34000000,0x0,0xfc800010,0xfc800010,0x1000000,0x2000000,0xfc800010,0x1000000,0x2000000,0xfc800010,0xfc800010,0xfc800010,0xfc800010,0xfc800010,0xfc800000,0xfc800000,0x0,0x0,0x4000000,0x34000000,0x4000000,0xfc800000,0xfc800000,0x4000000,0x0,0x34000000,0x34000000,};
+ }
+ private static void jj_la1_1() {
+ jj_la1_1 = new int[] {0x21d7541f,0x0,0x0,0x21d7541f,0x0,0x21d7541f,0x2000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc20000,0x80,0xc30000,0x0,0x0,0x0,0x0,0x0,0x80000000,0x0,0xc30000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc30000,0x0,0xc30000,0x0,0x0,0xc30000,0x80000000,0x0,0x0,0x20,0x20,0x10000,0x10000,0x10000,0x0,0x20,0x80c30000,0x80c30000,0x20,0xc20000,0xc00000,0xc30000,0x0,0x0,0x2115541f,0x21d7541f,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x21d7541f,0x21d7541f,0x21d7541f,0x21d7541f,0x0,0x0,0x0,0x0,0x10000,0x0,0x900,0x900,0x21d7541f,0x21d7541f,0x0,0xc30000,0x900,0x21d7541f,0x21d7541f,0x0,0x0,0x21d7541f,0x0,0x0,0x21d7541f,0x21d7541f,0x21d7541f,0x21d7541f,0x21d7541f,0x21d7541f,0x21d7541f,0x20,0x80,0x10000,0xc30000,0x10000,0x21d7541f,0x21d7541f,0x10000,0x0,0xc30000,0xc30000,};
+ }
+ private static void jj_la1_2() {
+ jj_la1_2 = new int[] {0x45114400,0x0,0x0,0x45114400,0x40000000,0x45114400,0x0,0x0,0x0,0x80000000,0x0,0x4000000,0x0,0x4000000,0x4100000,0x4400,0x4400,0x114400,0x0,0x1114400,0x80000000,0x0,0x80000000,0x0,0x0,0xff,0x0,0x1114400,0x0,0x0,0x100,0x100,0x200,0x200,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1114400,0x0,0x1114400,0x0,0x0,0x1114400,0xff,0x0,0x0,0x11000000,0x11000000,0x100000,0x100000,0x100000,0x100000,0x11000000,0x11144ff,0x11144ff,0x10000000,0x14400,0x0,0x1114400,0x80000000,0x0,0x44100000,0x45114400,0x0,0x0,0x0,0x0,0x80000000,0x0,0x80000000,0x80000000,0x80000000,0x45114400,0x45114400,0x45114400,0x45114400,0x80000000,0x0,0x0,0x0,0x100000,0x4000000,0x0,0x0,0x45114400,0x45114400,0x0,0x1114400,0x0,0x45114400,0x45114400,0x0,0x0,0x45114400,0x0,0x0,0x45114400,0x45114400,0x45114400,0x45114400,0x45114400,0x45114400,0x45114400,0x10000000,0x0,0x100000,0x1114400,0x100000,0x45114400,0x45114400,0x100000,0x80000000,0x1114400,0x1114400,};
+ }
+ private static void jj_la1_3() {
+ jj_la1_3 = new int[] {0xe0e00000,0x0,0x0,0xe0e00000,0x0,0xe0e00000,0x0,0x0,0x0,0x0,0x400,0x0,0x400000,0x0,0x400000,0x0,0x0,0x80000000,0x0,0xe0e00000,0x0,0x0,0x0,0x400000,0x0,0x0,0x0,0xe0e00000,0x1ffc00,0x2000000,0x8000000,0x8000000,0x10000000,0x10000000,0x1,0x0,0x0,0x0,0x3c8,0x3c8,0x36,0x36,0x0,0x0,0x80000000,0x80000000,0x0,0x0,0x200000,0xe0e00000,0x80000000,0xe0c00000,0x60000000,0x800000,0x400000,0x0,0x60000000,0x60000000,0x0,0x0,0x400000,0x400000,0x400000,0x400000,0x0,0xe0e00000,0xe0e00000,0x0,0x0,0x0,0xe0e00000,0x0,0x200000,0x60600000,0xe0e00000,0x0,0x0,0x0,0x400000,0x0,0x400,0x0,0x0,0x0,0xe0e00000,0xe0e00000,0xe0e00000,0xe0e00000,0x0,0x400,0x601ffc00,0x601ffc00,0x60400000,0x4000000,0x0,0x0,0xe0e00000,0xe0e00000,0x0,0xe0e00000,0x0,0xe0e00000,0xe0e00000,0x0,0x0,0xe0e00000,0x0,0x0,0xe4e00000,0xe0e00000,0xe0e00000,0xe0e00000,0xe0e00000,0xe0e00000,0xe4e00000,0x0,0x0,0x60400000,0xe0e00000,0x60400000,0xe0e00000,0xe4e00000,0x60400000,0x0,0xe0e00000,0xe0e00000,};
+ }
+ private static void jj_la1_4() {
+ jj_la1_4 = new int[] {0x1009,0x0,0x0,0x1009,0x0,0x1009,0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x0,0x1000,0x0,0x0,0x1,0x0,0x1009,0x0,0x8,0x0,0x1008,0x8,0x0,0x0,0x1009,0xc00,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x20,0x8,0x0,0x0,0x0,0x0,0x380,0x380,0x1,0x1,0x46,0x46,0x0,0x1009,0x1,0x1001,0x0,0x0,0x1000,0x0,0x0,0x0,0x0,0x0,0x1000,0x1000,0x1000,0x1000,0x0,0x1009,0x1009,0x0,0x0,0x0,0x1009,0x0,0x0,0x1000,0x1009,0x0,0x0,0x0,0x1000,0x0,0x0,0x0,0x0,0x0,0x1009,0x1009,0x1009,0x1009,0x0,0x0,0xc00,0xc00,0x1000,0x0,0x0,0x0,0x1009,0x1009,0x0,0x1009,0x0,0x1009,0x1009,0x0,0x0,0x1009,0x0,0x0,0x1009,0x1009,0x1009,0x1009,0x1009,0x1009,0x1009,0x0,0x0,0x1000,0x1009,0x1000,0x1009,0x1009,0x1000,0x0,0x1009,0x1009,};
+ }
+ static final private JJCalls[] jj_2_rtns = new JJCalls[8];
static private boolean jj_rescan = false;
static private int jj_gc = 0;
@@ -4139,7 +6191,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4149,7 +6201,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4166,7 +6218,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4176,7 +6228,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4192,7 +6244,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4201,7 +6253,7 @@ StringBuffer buff = new StringBuffer();
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 96; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 126; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -4306,17 +6358,17 @@ StringBuffer buff = new StringBuffer();
}
}
- static final public ParseException generateParseException() {
+ static public ParseException generateParseException() {
jj_expentries.removeAllElements();
- boolean[] la1tokens = new boolean[128];
- for (int i = 0; i < 128; i++) {
+ boolean[] la1tokens = new boolean[141];
+ for (int i = 0; i < 141; i++) {
la1tokens[i] = false;
}
if (jj_kind >= 0) {
la1tokens[jj_kind] = true;
jj_kind = -1;
}
- for (int i = 0; i < 96; i++) {
+ for (int i = 0; i < 126; i++) {
if (jj_la1[i] == jj_gen) {
for (int j = 0; j < 32; j++) {
if ((jj_la1_0[i] & (1< jj_gen) {
@@ -4372,6 +6427,7 @@ StringBuffer buff = new StringBuffer();
case 4: jj_3_5(); break;
case 5: jj_3_6(); break;
case 6: jj_3_7(); break;
+ case 7: jj_3_8(); break;
}
}
p = p.next;