X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/test/PHPParser.jj b/net.sourceforge.phpeclipse/src/test/PHPParser.jj index 1e7e5a2..205b380 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParser.jj +++ b/net.sourceforge.phpeclipse/src/test/PHPParser.jj @@ -17,6 +17,7 @@ options { BUILD_TOKEN_MANAGER = true; SANITY_CHECK = true; FORCE_LA_CHECK = false; + COMMON_TOKEN_ACTION = true; } PARSER_BEGIN(PHPParser) @@ -40,6 +41,7 @@ import net.sourceforge.phpdt.internal.compiler.ast.*; import net.sourceforge.phpdt.internal.compiler.parser.OutlineableWithChildren; import net.sourceforge.phpdt.internal.compiler.parser.Outlineable; import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo; +import net.sourceforge.phpdt.internal.corext.Assert; /** * A new php parser. @@ -66,7 +68,7 @@ public final class PHPParser extends PHPParserSuperclass { private static int errorEnd = -1; private static PHPDocument phpDocument; - private static final char[] SYNTAX_ERROR_CHAR = {'s','y','n','t','a','x',' ','e','r','r','o','r'}; + private static final String SYNTAX_ERROR_CHAR = "syntax error"; /** * The point where html starts. * It will be used by the token manager to create HTMLCode objects @@ -94,6 +96,46 @@ public final class PHPParser extends PHPParserSuperclass { PHPParser.fileToParse = fileToParse; } + public static final void phpParserTester(final String strEval) throws ParseException { + final StringReader stream = new StringReader(strEval); + if (jj_input_stream == null) { + jj_input_stream = new SimpleCharStream(stream, 1, 1); + } + ReInit(new StringReader(strEval)); + init(); + phpDocument = new PHPDocument(null,"_root".toCharArray()); + currentSegment = phpDocument; + outlineInfo = new PHPOutlineInfo(null, currentSegment); + PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING); + phpTest(); + } + + public static final void htmlParserTester(final File fileName) throws FileNotFoundException, ParseException { + final Reader stream = new FileReader(fileName); + if (jj_input_stream == null) { + jj_input_stream = new SimpleCharStream(stream, 1, 1); + } + ReInit(stream); + init(); + phpDocument = new PHPDocument(null,"_root".toCharArray()); + currentSegment = phpDocument; + outlineInfo = new PHPOutlineInfo(null, currentSegment); + phpFile(); + } + + public static final void htmlParserTester(final String strEval) throws ParseException { + final StringReader stream = new StringReader(strEval); + if (jj_input_stream == null) { + jj_input_stream = new SimpleCharStream(stream, 1, 1); + } + ReInit(stream); + init(); + phpDocument = new PHPDocument(null,"_root".toCharArray()); + currentSegment = phpDocument; + outlineInfo = new PHPOutlineInfo(null, currentSegment); + phpFile(); + } + /** * Reinitialize the parser. */ @@ -143,21 +185,23 @@ public final class PHPParser extends PHPParserSuperclass { return outlineInfo; } + private static void processParseExceptionDebug(final ParseException e) throws ParseException { + if (PARSER_DEBUG) { + throw e; + } + processParseException(e); + } /** * 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 processParseException(final ParseException e) { - if (PARSER_DEBUG) { - e.printStackTrace(); - return; - } if (errorMessage == null) { PHPeclipsePlugin.log(e); errorMessage = "this exception wasn't handled by the parser please tell us how to reproduce it"; - errorStart = SimpleCharStream.getPosition(); - errorEnd = errorStart + 1; + errorStart = e.currentToken.sourceStart; + errorEnd = e.currentToken.sourceEnd; } setMarker(e); errorMessage = null; @@ -173,8 +217,8 @@ public final class PHPParser extends PHPParserSuperclass { if (errorStart == -1) { setMarker(fileToParse, errorMessage, - SimpleCharStream.tokenBegin, - SimpleCharStream.tokenBegin + e.currentToken.image.length(), + e.currentToken.sourceStart, + e.currentToken.sourceEnd, errorLevel, "Line " + e.currentToken.beginLine); } else { @@ -233,7 +277,7 @@ public final class PHPParser extends PHPParserSuperclass { } } - public final void parse(final String s) throws CoreException { + public final void parse(final String s) { final StringReader stream = new StringReader(s); if (jj_input_stream == null) { jj_input_stream = new SimpleCharStream(stream, 1, 1); @@ -306,6 +350,18 @@ public final class PHPParser extends PHPParserSuperclass { PARSER_END(PHPParser) +TOKEN_MGR_DECLS: +{ + // CommonTokenAction: use the begins/ends fields added to the Jack + // CharStream class to set corresponding fields in each Token (which was + // also extended with new fields). By default Jack doesn't supply absolute + // offsets, just line/column offsets + static void CommonTokenAction(Token t) { + t.sourceStart = input_stream.beginOffset; + t.sourceEnd = input_stream.endOffset; + } // CommonTokenAction +} // TOKEN_MGR_DECLS + TOKEN : { {PHPParser.createNewHTMLCode();} : PHPPARSING @@ -313,7 +369,7 @@ PARSER_END(PHPParser) | "> {PHPParser.htmlStart = SimpleCharStream.getPosition();} : DEFAULT } @@ -347,7 +403,7 @@ PARSER_END(PHPParser) SPECIAL_TOKEN : { : PHPPARSING -| "?>" : DEFAULT +| < ~[] > } SPECIAL_TOKEN : @@ -580,6 +636,13 @@ MORE : > } +void phpTest() : +{} +{ + Php() + +} + void phpFile() : {} { @@ -631,20 +694,20 @@ void PhpBlock() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } } PHPEchoBlock phpEchoBlock() : { final Expression expr; - final int pos = SimpleCharStream.getPosition(); final PHPEchoBlock echoBlock; + final Token token, token2; } { - expr = Expression() [ ] + token = expr = Expression() [ ] token2 = { - echoBlock = new PHPEchoBlock(expr,pos,SimpleCharStream.getPosition()); + echoBlock = new PHPEchoBlock(expr,token.sourceStart,token.sourceEnd); pushOnAstNodes(echoBlock); return echoBlock;} } @@ -658,50 +721,58 @@ void Php() : ClassDeclaration ClassDeclaration() : { final ClassDeclaration classDeclaration; - final Token className,superclassName; - final int pos; - char[] classNameImage = SYNTAX_ERROR_CHAR; - char[] superclassNameImage = null; + Token className = null; + final Token superclassName, token; + String classNameImage = SYNTAX_ERROR_CHAR; + String superclassNameImage = null; } { - - {pos = SimpleCharStream.getPosition();} + token = try { className = - {classNameImage = className.image.toCharArray();} + {classNameImage = className.image;} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected"; errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } [ try { superclassName = - {superclassNameImage = superclassName.image.toCharArray();} + {superclassNameImage = superclassName.image;} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected"; errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); superclassNameImage = SYNTAX_ERROR_CHAR; } ] { + int start, end; + if (className == null) { + start = token.sourceStart; + end = token.sourceEnd; + } else { + start = className.sourceStart; + end = className.sourceEnd; + } if (superclassNameImage == null) { + classDeclaration = new ClassDeclaration(currentSegment, classNameImage, - pos, - 0); + start, + end); } else { classDeclaration = new ClassDeclaration(currentSegment, classNameImage, superclassNameImage, - pos, - 0); + start, + end); } currentSegment.add(classDeclaration); currentSegment = classDeclaration; @@ -723,7 +794,7 @@ void ClassBody(final ClassDeclaration classDeclaration) : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } ( ClassBodyDeclaration(classDeclaration) )* try { @@ -733,7 +804,7 @@ void ClassBody(final ClassDeclaration classDeclaration) : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } } @@ -761,42 +832,50 @@ FieldDeclaration FieldDeclaration() : final VariableDeclaration[] list; final ArrayList arrayList = new ArrayList(); final int pos = SimpleCharStream.getPosition(); + final Token token; + Token token2 = null; } { - variableDeclaration = VariableDeclaratorNoSuffix() + token = variableDeclaration = VariableDeclaratorNoSuffix() {arrayList.add(variableDeclaration); - outlineInfo.addVariable(new String(variableDeclaration.name()));} + outlineInfo.addVariable(variableDeclaration.name());} ( variableDeclaration = VariableDeclaratorNoSuffix() {arrayList.add(variableDeclaration); - outlineInfo.addVariable(new String(variableDeclaration.name()));} + outlineInfo.addVariable(variableDeclaration.name());} )* try { - + token2 = } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected after variable declaration"; errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } {list = new VariableDeclaration[arrayList.size()]; arrayList.toArray(list); + int end; + if (token2 == null) { + end = list[list.length-1].sourceEnd; + } else { + end = token2.sourceEnd; + } return new FieldDeclaration(list, - pos, - SimpleCharStream.getPosition(), + token.sourceStart, + end, currentSegment);} } /** * a strict variable declarator : there cannot be a suffix here. + * It will be used by fields and formal parameters */ VariableDeclaration VariableDeclaratorNoSuffix() : { final Token varName; Expression initializer = null; - final int pos = SimpleCharStream.getPosition(); } { varName = @@ -809,32 +888,38 @@ VariableDeclaration VariableDeclaratorNoSuffix() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } ] { if (initializer == null) { return new VariableDeclaration(currentSegment, - new Variable(varName.image.substring(1).toCharArray(),SimpleCharStream.getPosition()-varName.image.length()-1,SimpleCharStream.getPosition()), - pos, - SimpleCharStream.getPosition()); + new Variable(varName.image.substring(1), + varName.sourceStart, + varName.sourceEnd), + varName.sourceStart, + varName.sourceEnd); } return new VariableDeclaration(currentSegment, - new Variable(varName.image.substring(1).toCharArray(),SimpleCharStream.getPosition()-varName.image.length()-1,SimpleCharStream.getPosition()), + new Variable(varName.image.substring(1), + varName.sourceStart, + varName.sourceEnd), initializer, VariableDeclaration.EQUAL, - pos); + varName.sourceStart); } } +/** + * this will be used by static statement + */ VariableDeclaration VariableDeclarator() : { - final String varName; + final AbstractVariable variable; Expression initializer = null; - final int pos = SimpleCharStream.getPosition(); } { - varName = VariableDeclaratorId() + variable = VariableDeclaratorId() [ try { @@ -844,21 +929,21 @@ VariableDeclaration VariableDeclarator() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } ] { if (initializer == null) { return new VariableDeclaration(currentSegment, - new Variable(varName.substring(1).toCharArray(),SimpleCharStream.getPosition()-varName.length()-1,SimpleCharStream.getPosition()), - pos, - SimpleCharStream.getPosition()); + variable, + variable.sourceStart, + variable.sourceEnd); } return new VariableDeclaration(currentSegment, - new Variable(varName.substring(1).toCharArray(),SimpleCharStream.getPosition()-varName.length()-1,SimpleCharStream.getPosition()), + variable, initializer, VariableDeclaration.EQUAL, - pos); + variable.sourceStart); } } @@ -866,28 +951,24 @@ VariableDeclaration VariableDeclarator() : * A Variable name. * @return the variable name (with suffix) */ -String VariableDeclaratorId() : +AbstractVariable VariableDeclaratorId() : { - final String var; - Expression expression = null; + final Variable var; + AbstractVariable expression = null; final int pos = SimpleCharStream.getPosition(); - ConstantIdentifier ex; } { try { var = Variable() ( LOOKAHEAD(2) - {ex = new ConstantIdentifier(var.toCharArray(), - pos, - SimpleCharStream.getPosition());} - expression = VariableSuffix(ex) + expression = VariableSuffix(var) )* { if (expression == null) { return var; } - return expression.toStringExpression(); + return expression; } } catch (ParseException e) { errorMessage = "'$' expected for variable identifier"; @@ -901,100 +982,176 @@ String VariableDeclaratorId() : /** * Return a variablename without the $. * @return a variable name - */ -String Variable(): + *//* +Variable Variable(): { final StringBuffer buff; Expression expression = null; final Token token; - final String expr; + Variable expr; + final int pos; } { - token = [ expression = Expression() ] + token = + [ expression = Expression() ] { if (expression == null) { - return token.image.substring(1); + return new Variable(token.image.substring(1), + token.sourceStart, + token.sourceEnd); } - buff = new StringBuffer(token.image); + String s = expression.toStringExpression(); + buff = new StringBuffer(token.image.length()+s.length()+2); + buff.append(token.image); buff.append("{"); - buff.append(expression.toStringExpression()); + buff.append(s); buff.append("}"); - return buff.toString(); + s = buff.toString(); + return new Variable(s,token.sourceStart,token.sourceEnd); } | - expr = VariableName() - {return expr;} + token = + expr = VariableName() + {return new Variable(expr,token.sourceStart,expr.sourceEnd);} +} */ + +Variable Variable() : +{ + Variable variable = null; + final Token token; +} +{ + token = [variable = Var(token)] + { + if (variable == null) { + return new Variable(token.image.substring(1),token.sourceStart,token.sourceEnd); + } + final StringBuffer buff = new StringBuffer(); + buff.append(token.image.substring(1)); + buff.append(variable.toStringExpression()); + return new Variable(buff.toString(),token.sourceStart,variable.sourceEnd); + } +| + token = variable = Var(token) + { + return new Variable(variable,token.sourceStart,variable.sourceEnd); + } +} + +Variable Var(final Token dollar) : +{ + Variable variable = null; + final Token token; + ConstantIdentifier constant; +} +{ + token = [variable = Var(token)] + {if (variable == null) { + return new Variable(token.image.substring(1),token.sourceStart,token.sourceEnd); + } + final StringBuffer buff = new StringBuffer(); + buff.append(token.image.substring(1)); + buff.append(variable.toStringExpression()); + return new Variable(buff.toString(),dollar.sourceStart,variable.sourceEnd); + } +| + LOOKAHEAD( ) + token = variable = Var(token) + {return new Variable(variable,dollar.sourceStart,variable.sourceEnd);} +| + constant = VariableName() + {return new Variable(constant.name,dollar.sourceStart,constant.sourceEnd);} } /** * A Variable name (without the $) * @return a variable name String */ -String VariableName(): +ConstantIdentifier VariableName(): { final StringBuffer buff; - final String expr; + String expr; + final Variable var; Expression expression = null; final Token token; + Token token2 = null; + int pos; } { - expression = Expression() - {buff = new StringBuffer("{"); - buff.append(expression.toStringExpression()); + token = expression = Expression() token2 = + {expr = expression.toStringExpression(); + buff = new StringBuffer(expr.length()+2); + buff.append("{"); + buff.append(expr); buff.append("}"); - return buff.toString();} + pos = SimpleCharStream.getPosition(); + expr = buff.toString(); + return new ConstantIdentifier(expr, + token.sourceStart, + token2.sourceEnd); + + } | - token = [ expression = Expression() ] + token = + [ expression = Expression() token2 = ] { if (expression == null) { - return token.image; + return new ConstantIdentifier(token.image, + token.sourceStart, + token.sourceEnd); } - buff = new StringBuffer(token.image); + expr = expression.toStringExpression(); + buff = new StringBuffer(token.image.length()+expr.length()+2); + buff.append(token.image); buff.append("{"); - buff.append(expression.toStringExpression()); + buff.append(expr); buff.append("}"); - return buff.toString(); - } -| - expr = VariableName() + expr = buff.toString(); + return new ConstantIdentifier(expr, + token.sourceStart, + token2.sourceEnd); + } +/*| + + var = VariableName() { - buff = new StringBuffer("$"); - buff.append(expr); - return buff.toString(); + return new Variable(var, + var.sourceStart-1, + var.sourceEnd); } | - token = {return token.image;} + token = + { + return new Variable(token.image, + token.sourceStart, + token.sourceEnd); + } */ } Expression VariableInitializer() : { final Expression expr; - final Token token; - final int pos = SimpleCharStream.getPosition(); + final Token token, token2; } { expr = Literal() {return expr;} | - (token = | token = ) - {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(), - pos, - SimpleCharStream.getPosition()), + token2 = (token = | token = ) + {return new PrefixedUnaryExpression(new NumberLiteral(token), OperatorIds.MINUS, - pos);} + token2.sourceStart);} | - (token = | token = ) - {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(), - pos, - SimpleCharStream.getPosition()), + token2 = (token = | token = ) + {return new PrefixedUnaryExpression(new NumberLiteral(token), OperatorIds.PLUS, - pos);} + token2.sourceStart);} | expr = ArrayDeclarator() {return expr;} | token = - {return new ConstantIdentifier(token.image.toCharArray(),pos,SimpleCharStream.getPosition());} + {return new ConstantIdentifier(token);} } ArrayVariableDeclaration ArrayVariable() : @@ -1043,11 +1200,12 @@ MethodDeclaration MethodDeclaration() : final MethodDeclaration functionDeclaration; final Block block; final OutlineableWithChildren seg = currentSegment; + final Token token; } { - + token = try { - functionDeclaration = MethodDeclarator() + functionDeclaration = MethodDeclarator(token.sourceStart) {outlineInfo.addVariable(new String(functionDeclaration.name));} } catch (ParseException e) { if (errorMessage != null) throw e; @@ -1069,44 +1227,61 @@ MethodDeclaration MethodDeclaration() : * [&] IDENTIFIER(parameters ...). * @return a function description for the outline */ -MethodDeclaration MethodDeclarator() : +MethodDeclaration MethodDeclarator(final int start) : { - final Token identifier; + Token identifier = null; Token reference = null; - final Hashtable formalParameters; - final int pos = SimpleCharStream.getPosition(); - char[] identifierChar = SYNTAX_ERROR_CHAR; + final Hashtable formalParameters = new Hashtable(); + String identifierChar = SYNTAX_ERROR_CHAR; + final int end; } { [reference = ] try { identifier = - {identifierChar = identifier.image.toCharArray();} + {identifierChar = identifier.image;} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', function identifier expected"; errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); + } + end = FormalParameters(formalParameters) + { + int nameStart, nameEnd; + if (identifier == null) { + if (reference == null) { + nameStart = start + 9; + nameEnd = start + 10; + } else { + nameStart = reference.sourceEnd + 1; + nameEnd = reference.sourceEnd + 2; + } + } else { + nameStart = identifier.sourceStart; + nameEnd = identifier.sourceEnd; + } + return new MethodDeclaration(currentSegment, + identifierChar, + formalParameters, + reference != null, + nameStart, + nameEnd, + start, + end); } - formalParameters = FormalParameters() - {MethodDeclaration method = new MethodDeclaration(currentSegment, - identifierChar, - formalParameters, - reference != null, - pos, - SimpleCharStream.getPosition()); - return method;} } /** * FormalParameters follows method identifier. * (FormalParameter()) */ -Hashtable FormalParameters() : +int FormalParameters(final Hashtable parameters) : { VariableDeclaration var; - final Hashtable parameters = new Hashtable(); + final Token token; + int end; } { try { @@ -1116,7 +1291,7 @@ Hashtable FormalParameters() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } [ var = FormalParameter() @@ -1127,15 +1302,17 @@ Hashtable FormalParameters() : )* ] try { - + token = + {end = token.sourceEnd;} } catch (ParseException e) { errorMessage = "')' expected"; errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); + end = e.currentToken.sourceStart; } - {return parameters;} + {return end;} } /** @@ -1157,33 +1334,23 @@ VariableDeclaration FormalParameter() : } ConstantIdentifier Type() : -{final int pos;} -{ - {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.STRING,pos,pos-6);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.BOOL,pos,pos-4);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.BOOLEAN,pos,pos-7);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.REAL,pos,pos-4);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.DOUBLE,pos,pos-5);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.FLOAT,pos,pos-5);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.INT,pos,pos-3);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.INTEGER,pos,pos-7);} -| {pos = SimpleCharStream.getPosition(); - return new ConstantIdentifier(Types.OBJECT,pos,pos-6);} +{final Token token;} +{ + token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} +| token = {return new ConstantIdentifier(token);} } Expression Expression() : { final Expression expr; Expression initializer = null; - final int pos = SimpleCharStream.getPosition(); int assignOperator = -1; } { @@ -1192,7 +1359,7 @@ Expression Expression() : [ assignOperator = AssignmentOperator() try { - initializer = ConditionalExpression() + initializer = Expression() } catch (ParseException e) { if (errorMessage != null) { throw e; @@ -1204,44 +1371,46 @@ Expression Expression() : } ] { - char[] varName = expr.toStringExpression().substring(1).toCharArray(); - if (assignOperator == -1) { + if (assignOperator != -1) {// todo : change this, very very bad :( + if (expr instanceof AbstractVariable) { + return new VariableDeclaration(currentSegment, + (AbstractVariable) expr, + initializer, + expr.sourceStart, + initializer.sourceEnd); + } + String varName = expr.toStringExpression().substring(1); return new VariableDeclaration(currentSegment, - new Variable(varName,SimpleCharStream.getPosition()-varName.length-1,SimpleCharStream.getPosition()), - pos, - SimpleCharStream.getPosition()); - return expr; - } - return new VariableDeclaration(currentSegment, - new Variable(varName,SimpleCharStream.getPosition()-varName.length-1,SimpleCharStream.getPosition()), - initializer, - assignOperator, - pos); + new Variable(varName, + expr.sourceStart, + expr.sourceEnd), + expr.sourceStart, + initializer.sourceEnd); } - {return expr;} + return expr; + } | expr = ExpressionWBang() {return expr;} } Expression ExpressionWBang() : { final Expression expr; - final int pos = SimpleCharStream.getPosition(); + final Token token; } { - expr = ExpressionWBang() {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,pos);} + token = expr = ExpressionWBang() + {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,token.sourceStart);} | expr = ExpressionNoBang() {return expr;} } Expression ExpressionNoBang() : { - Expression expr = null; - int assignOperator = -1; - String var; - final int pos = SimpleCharStream.getPosition(); + Expression expr; } { + expr = ListExpression() {return expr;} +| expr = PrintExpression() {return expr;} -| expr = ListExpression() {return expr;} } /** @@ -1445,9 +1614,10 @@ Expression AdditiveExpression() : { expr = MultiplicativeExpression() ( - LOOKAHEAD(1) - ( {operator = OperatorIds.PLUS;} - | {operator = OperatorIds.MINUS;} ) + LOOKAHEAD(1) + ( {operator = OperatorIds.PLUS;} + | {operator = OperatorIds.MINUS;} + ) expr2 = MultiplicativeExpression() {expr = new BinaryExpression(expr,expr2,operator);} )* @@ -1486,24 +1656,31 @@ Expression MultiplicativeExpression() : Expression UnaryExpression() : { final Expression expr; - final int pos = SimpleCharStream.getPosition(); } { - expr = UnaryExpressionNoPrefix() + /* expr = UnaryExpressionNoPrefix() //why did I had that ? {return new PrefixedUnaryExpression(expr,OperatorIds.AND,pos);} -| - expr = AtUnaryExpression() {return expr;} +| */ + expr = AtNotUnaryExpression() {return expr;} } -Expression AtUnaryExpression() : +/** + * An expression prefixed (or not) by one or more @ and !. + * @return the expression + */ +Expression AtNotUnaryExpression() : { final Expression expr; - final int pos = SimpleCharStream.getPosition(); + final Token token; } { - - expr = AtUnaryExpression() - {return new PrefixedUnaryExpression(expr,OperatorIds.AT,pos);} + token = + expr = AtNotUnaryExpression() + {return new PrefixedUnaryExpression(expr,OperatorIds.AT,token.sourceStart);} +| + token = + expr = AtNotUnaryExpression() + {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,token.sourceStart);} | expr = UnaryExpressionNoPrefix() {return expr;} @@ -1513,17 +1690,16 @@ Expression AtUnaryExpression() : Expression UnaryExpressionNoPrefix() : { final Expression expr; - final int operator; - final int pos = SimpleCharStream.getPosition(); + final Token token; } { - ( - {operator = OperatorIds.PLUS;} - | - {operator = OperatorIds.MINUS;} - ) - expr = UnaryExpression() - {return new PrefixedUnaryExpression(expr,operator,pos);} + token = expr = AtNotUnaryExpression() {return new PrefixedUnaryExpression(expr, + OperatorIds.PLUS, + token.sourceStart);} +| + token = expr = AtNotUnaryExpression() {return new PrefixedUnaryExpression(expr, + OperatorIds.MINUS, + token.sourceStart);} | expr = PreIncDecExpression() {return expr;} @@ -1537,22 +1713,21 @@ Expression PreIncDecExpression() : { final Expression expr; final int operator; - final int pos = SimpleCharStream.getPosition(); +final Token token; } { ( - {operator = OperatorIds.PLUS_PLUS;} + token = {operator = OperatorIds.PLUS_PLUS;} | - {operator = OperatorIds.MINUS_MINUS;} + token = {operator = OperatorIds.MINUS_MINUS;} ) expr = PrimaryExpression() - {return new PrefixedUnaryExpression(expr,operator,pos);} + {return new PrefixedUnaryExpression(expr,operator,token.sourceStart);} } Expression UnaryExpressionNotPlusMinus() : { final Expression expr; - final int pos = SimpleCharStream.getPosition(); } { LOOKAHEAD( (Type() | ) ) @@ -1576,95 +1751,107 @@ CastExpression CastExpression() : { final ConstantIdentifier type; final Expression expr; -final int pos = SimpleCharStream.getPosition(); +final Token token,token1; } { - + token1 = ( type = Type() | - {type = new ConstantIdentifier(Types.ARRAY,pos,SimpleCharStream.getPosition());} + token = {type = new ConstantIdentifier(token);} ) expr = UnaryExpression() - {return new CastExpression(type,expr,pos,SimpleCharStream.getPosition());} + {return new CastExpression(type,expr,token1.sourceStart,expr.sourceEnd);} } Expression PostfixExpression() : { final Expression expr; int operator = -1; - final int pos = SimpleCharStream.getPosition(); + Token token = null; } { expr = PrimaryExpression() [ - {operator = OperatorIds.PLUS_PLUS;} + token = {operator = OperatorIds.PLUS_PLUS;} | - {operator = OperatorIds.MINUS_MINUS;} + token = {operator = OperatorIds.MINUS_MINUS;} ] { if (operator == -1) { return expr; } - return new PostfixedUnaryExpression(expr,operator,pos); + return new PostfixedUnaryExpression(expr,operator,token.sourceEnd); } } Expression PrimaryExpression() : { - Expression expr; - int assignOperator = -1; - final Token identifier; - final String var; - final int pos = SimpleCharStream.getPosition(); + Expression expr = null; + Token token = null; } { - expr = PrimaryPrefix() - (expr = PrimarySuffix(expr))* - [ expr = Arguments(expr) ] - {return expr;} -| - expr = ClassIdentifier() - {expr = new PrefixedUnaryExpression(expr, - OperatorIds.NEW, - pos); - } - [ expr = Arguments(expr) ] + [token = ] expr = refPrimaryExpression(token) {return expr;} | expr = ArrayDeclarator() {return expr;} } -Expression PrimaryPrefix() : +Expression refPrimaryExpression(final Token reference) : { - final Expression expr; - final Token token; + Expression expr = null; + Expression expr2 = null; + int assignOperator = -1; + final Token identifier; final String var; - final int pos = SimpleCharStream.getPosition(); } { - token = {return new ConstantIdentifier(token.image.toCharArray(), - pos, - SimpleCharStream.getPosition());} + identifier = + { + expr = new ConstantIdentifier(identifier); + } + ( + expr2 = ClassIdentifier() + {expr = new ClassAccess(expr, + expr2, + ClassAccess.STATIC);} + )* + [ expr2 = Arguments(expr) ] + { + if (expr2 == null) { + if (reference != null) { + ParseException e = generateParseException(); + errorMessage = "you cannot use a constant by reference"; + errorLevel = ERROR; + errorStart = reference.sourceStart; + errorEnd = reference.sourceEnd; + processParseExceptionDebug(e); + } + return expr; + } + return expr2; + } | - var = VariableDeclaratorId() {return new Variable(var.toCharArray(), - pos, - SimpleCharStream.getPosition());} -} - -AbstractSuffixExpression PrimarySuffix(final Expression prefix) : -{ - final AbstractSuffixExpression suffix; - final Expression expr; -} -{ - suffix = VariableSuffix(prefix) {return suffix;} -| expr = ClassIdentifier() - {suffix = new ClassAccess(prefix, - expr, - ClassAccess.STATIC); - return suffix;} + expr = VariableDeclaratorId() //todo use the reference parameter ... + [ expr = Arguments(expr) ] + {return expr;} +| + token = + expr = ClassIdentifier() + { + int start; + if (reference == null) { + start = token.sourceStart; + } else { + start = reference.sourceStart; + } + expr = new ClassInstantiation(expr, + reference != null, + start); + } + [ expr = Arguments(expr) ] + {return expr;} } /** @@ -1675,61 +1862,38 @@ AbstractSuffixExpression PrimarySuffix(final Expression prefix) : ArrayInitializer ArrayDeclarator() : { final ArrayVariableDeclaration[] vars; - final int pos = SimpleCharStream.getPosition(); + final Token token; } { - vars = ArrayInitializer() - {return new ArrayInitializer(vars,pos,SimpleCharStream.getPosition());} + token = vars = ArrayInitializer() + {return new ArrayInitializer(vars,token.sourceStart,SimpleCharStream.getPosition());} } -PrefixedUnaryExpression classInstantiation() : +Expression ClassIdentifier(): { - Expression expr; - final StringBuffer buff; - final int pos = SimpleCharStream.getPosition(); -} -{ - expr = ClassIdentifier() - [ - {buff = new StringBuffer(expr.toStringExpression());} - expr = PrimaryExpression() - {buff.append(expr.toStringExpression()); - expr = new ConstantIdentifier(buff.toString().toCharArray(), - pos, - SimpleCharStream.getPosition());} - ] - {return new PrefixedUnaryExpression(expr, - OperatorIds.NEW, - pos);} -} - -ConstantIdentifier ClassIdentifier(): -{ - final String expr; + final Expression expr; final Token token; - final int pos = SimpleCharStream.getPosition(); final ConstantIdentifier type; } { - token = {return new ConstantIdentifier(token.image.toCharArray(), - pos, - SimpleCharStream.getPosition());} -| type = Type() {return type;} -| expr = VariableDeclaratorId() {return new ConstantIdentifier(expr.toCharArray(), - pos, - SimpleCharStream.getPosition());} + token = {return new ConstantIdentifier(token);} +| expr = Type() {return expr;} +| expr = VariableDeclaratorId() {return expr;} } -AbstractSuffixExpression VariableSuffix(final Expression prefix) : +/** + * Used by Variabledeclaratorid and primarysuffix + */ +AbstractVariable VariableSuffix(final AbstractVariable prefix) : { - String expr = null; + Variable expr = null; final int pos = SimpleCharStream.getPosition(); Expression expression = null; } { try { - expr = VariableName() + expression = VariableName() } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', function call or field access expected"; errorLevel = ERROR; @@ -1738,7 +1902,7 @@ AbstractSuffixExpression VariableSuffix(final Expression prefix) : throw e; } {return new ClassAccess(prefix, - new ConstantIdentifier(expr.toCharArray(),pos,SimpleCharStream.getPosition()), + expression, ClassAccess.NORMAL);} | [ expression = Expression() | expression = Type() ] //Not good @@ -1757,31 +1921,25 @@ AbstractSuffixExpression VariableSuffix(final Expression prefix) : Literal Literal() : { final Token token; - final int pos; } { - token = {pos = SimpleCharStream.getPosition(); - return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);} -| token = {pos = SimpleCharStream.getPosition(); - return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);} -| token = {pos = SimpleCharStream.getPosition(); - return new StringLiteral(token.image.toCharArray(),pos-token.image.length());} -| {pos = SimpleCharStream.getPosition(); - return new TrueLiteral(pos-4,pos);} -| {pos = SimpleCharStream.getPosition(); - return new FalseLiteral(pos-4,pos);} -| {pos = SimpleCharStream.getPosition(); - return new NullLiteral(pos-4,pos);} + token = {return new NumberLiteral(token);} +| token = {return new NumberLiteral(token);} +| token = {return new StringLiteral(token);} +| token = {return new TrueLiteral(token);} +| token = {return new FalseLiteral(token);} +| token = {return new NullLiteral(token);} } FunctionCall Arguments(final Expression func) : { Expression[] args = null; +final Token token; } { [ args = ArgumentList() ] try { - + token = } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ')' expected to close the argument list"; errorLevel = ERROR; @@ -1789,7 +1947,7 @@ Expression[] args = null; errorEnd = SimpleCharStream.getPosition() + 1; throw e; } - {return new FunctionCall(func,args,SimpleCharStream.getPosition());} + {return new FunctionCall(func,args,token.sourceEnd);} } /** @@ -1851,6 +2009,7 @@ Statement StatementNoBreak() : | [token=] statement = IncludeStatement() {if (token != null) { ((InclusionStatement)statement).silent = true; + statement.sourceStart = token.sourceStart; } return statement;} | statement = StaticStatement() {return statement;} @@ -1866,11 +2025,13 @@ Statement StatementNoBreak() : Statement expressionStatement() : { final Statement statement; + final Token token; } { statement = Expression() try { - + token = + {statement.sourceEnd = token.sourceEnd;} } catch (ParseException e) { if (e.currentToken.next.kind != PHPParserConstants.PHPEND) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected"; @@ -1897,7 +2058,7 @@ Define defineStatement() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } try { defineName = Expression() @@ -1915,7 +2076,7 @@ Define defineStatement() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } try { defineValue = Expression() @@ -1933,7 +2094,7 @@ Define defineStatement() : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } {return new Define(currentSegment, defineName, @@ -1989,14 +2150,14 @@ InclusionStatement IncludeStatement() : { final Expression expr; final int keyword; - final int pos = SimpleCharStream.getPosition(); final InclusionStatement inclusionStatement; + final Token token, token2; } { - ( {keyword = InclusionStatement.REQUIRE;} - | {keyword = InclusionStatement.REQUIRE_ONCE;} - | {keyword = InclusionStatement.INCLUDE;} - | {keyword = InclusionStatement.INCLUDE_ONCE;}) + ( token = {keyword = InclusionStatement.REQUIRE;} + | token = {keyword = InclusionStatement.REQUIRE_ONCE;} + | token = {keyword = InclusionStatement.INCLUDE;} + | token = {keyword = InclusionStatement.INCLUDE_ONCE;}) try { expr = Expression() } catch (ParseException e) { @@ -2012,11 +2173,11 @@ InclusionStatement IncludeStatement() : {inclusionStatement = new InclusionStatement(currentSegment, keyword, expr, - pos); + token.sourceStart); currentSegment.add(inclusionStatement); } try { - + token2 = } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected"; errorLevel = ERROR; @@ -2024,7 +2185,8 @@ InclusionStatement IncludeStatement() : errorEnd = SimpleCharStream.getPosition() + 1; throw e; } - {return inclusionStatement;} + {inclusionStatement.sourceEnd = token2.sourceEnd; + return inclusionStatement;} } PrintExpression PrintExpression() : @@ -2038,7 +2200,7 @@ PrintExpression PrintExpression() : ListExpression ListExpression() : { - String expr = null; + Expression expr = null; final Expression expression; final ArrayList list = new ArrayList(); final int pos = SimpleCharStream.getPosition(); @@ -2082,17 +2244,17 @@ ListExpression ListExpression() : } [ expression = Expression() { - final String[] strings = new String[list.size()]; - list.toArray(strings); - return new ListExpression(strings, + final Variable[] vars = new Variable[list.size()]; + list.toArray(vars); + return new ListExpression(vars, expression, pos, SimpleCharStream.getPosition());} ] { - final String[] strings = new String[list.size()]; - list.toArray(strings); - return new ListExpression(strings,pos,SimpleCharStream.getPosition());} + final Variable[] vars = new Variable[list.size()]; + list.toArray(vars); + return new ListExpression(vars,pos,SimpleCharStream.getPosition());} } /** @@ -2103,55 +2265,61 @@ EchoStatement EchoStatement() : { final ArrayList expressions = new ArrayList(); Expression expr; - final int pos = SimpleCharStream.getPosition(); + Token token; + Token token2 = null; } { - expr = Expression() + token = expr = Expression() {expressions.add(expr);} ( expr = Expression() {expressions.add(expr);} )* try { - + token2 = } catch (ParseException e) { if (e.currentToken.next.kind != 4) { errorMessage = "';' expected after 'echo' statement"; errorLevel = ERROR; - errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; - errorEnd = SimpleCharStream.getPosition() + 1; - throw e; + errorStart = e.currentToken.sourceEnd; + errorEnd = e.currentToken.sourceEnd; + processParseExceptionDebug(e); } } - {final Expression[] exprs = new Expression[expressions.size()]; + { + final Expression[] exprs = new Expression[expressions.size()]; expressions.toArray(exprs); - return new EchoStatement(exprs,pos);} + if (token2 == null) { + return new EchoStatement(exprs,token.sourceStart, exprs[exprs.length-1].sourceEnd); + } + return new EchoStatement(exprs,token.sourceStart, token2.sourceEnd); + } } GlobalStatement GlobalStatement() : { - final int pos = SimpleCharStream.getPosition(); - String expr; + Variable expr; final ArrayList vars = new ArrayList(); final GlobalStatement global; + final Token token, token2; } { - - expr = VariableDeclaratorId() + token = + expr = Variable() {vars.add(expr);} ( - expr = VariableDeclaratorId() + expr = Variable() {vars.add(expr);} )* try { - + token2 = { - final String[] strings = new String[vars.size()]; - vars.toArray(strings); + final Variable[] variables = new Variable[vars.size()]; + vars.toArray(variables); global = new GlobalStatement(currentSegment, - strings, - pos, - SimpleCharStream.getPosition()); + variables, + token.sourceStart, + token2.sourceEnd); currentSegment.add(global); return global;} } catch (ParseException e) { @@ -2165,21 +2333,23 @@ GlobalStatement GlobalStatement() : StaticStatement StaticStatement() : { - final int pos = SimpleCharStream.getPosition(); final ArrayList vars = new ArrayList(); VariableDeclaration expr; + final Token token, token2; } { - expr = VariableDeclarator() {vars.add(new String(expr.name()));} - ( expr = VariableDeclarator() {vars.add(new String(expr.name()));})* + token = expr = VariableDeclarator() {vars.add(expr);} + ( + expr = VariableDeclarator() {vars.add(expr);} + )* try { - + token2 = { - final String[] strings = new String[vars.size()]; - vars.toArray(strings); - return new StaticStatement(strings, - pos, - SimpleCharStream.getPosition());} + final VariableDeclaration[] variables = new VariableDeclaration[vars.size()]; + vars.toArray(variables); + return new StaticStatement(variables, + token.sourceStart, + token2.sourceEnd);} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. a ';' was expected"; errorLevel = ERROR; @@ -2191,13 +2361,12 @@ StaticStatement StaticStatement() : LabeledStatement LabeledStatement() : { - final int pos = SimpleCharStream.getPosition(); final Token label; final Statement statement; } { label = statement = Statement() - {return new LabeledStatement(label.image.toCharArray(),statement,pos,SimpleCharStream.getPosition());} + {return new LabeledStatement(label.image,statement,label.sourceStart,statement.sourceEnd);} } /** @@ -2209,13 +2378,13 @@ LabeledStatement LabeledStatement() : */ Block Block() : { - final int pos = SimpleCharStream.getPosition(); final ArrayList list = new ArrayList(); Statement statement; + final Token token, token2; } { try { - + token = } catch (ParseException e) { errorMessage = "'{' expected"; errorLevel = ERROR; @@ -2226,7 +2395,7 @@ Block Block() : ( statement = BlockStatement() {list.add(statement);} | statement = htmlBlock() {list.add(statement);})* try { - + token2 = } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.image +"', '}' expected"; errorLevel = ERROR; @@ -2237,7 +2406,7 @@ Block Block() : { final Statement[] statements = new Statement[list.size()]; list.toArray(statements); - return new Block(statements,pos,SimpleCharStream.getPosition());} + return new Block(statements,token.sourceStart,token2.sourceEnd);} } Statement BlockStatement() : @@ -2245,8 +2414,16 @@ Statement BlockStatement() : final Statement statement; } { - statement = Statement() {if (phpDocument == currentSegment) pushOnAstNodes(statement); - return statement;} + try { + statement = Statement() {if (phpDocument == currentSegment) pushOnAstNodes(statement); + return statement;} + } catch (ParseException e) { + errorMessage = "unexpected token : '"+ e.currentToken.image +"', a statement was expected"; + errorLevel = ERROR; + errorStart = e.currentToken.sourceStart; + errorEnd = e.currentToken.sourceEnd; + throw e; + } | statement = ClassDeclaration() {return statement;} | statement = MethodDeclaration() {if (phpDocument == currentSegment) pushOnAstNodes(statement); currentSegment.add((MethodDeclaration) statement); @@ -2269,6 +2446,9 @@ Statement BlockStatementNoBreak() : return statement;} } +/** + * used only by ForInit() + */ VariableDeclaration[] LocalVariableDeclaration() : { final ArrayList list = new ArrayList(); @@ -2284,39 +2464,43 @@ VariableDeclaration[] LocalVariableDeclaration() : return vars;} } +/** + * used only by LocalVariableDeclaration(). + */ VariableDeclaration LocalVariableDeclarator() : { - final String varName; + final Variable varName; Expression initializer = null; - final int pos = SimpleCharStream.getPosition(); } { - varName = VariableDeclaratorId() [ initializer = Expression() ] + varName = Variable() [ initializer = Expression() ] { if (initializer == null) { return new VariableDeclaration(currentSegment, - new Variable(varName.toCharArray(),SimpleCharStream.getPosition()-varName.length(),SimpleCharStream.getPosition()), - pos, - SimpleCharStream.getPosition()); + varName, + varName.sourceStart, + varName.sourceEnd); } return new VariableDeclaration(currentSegment, - new Variable(varName.toCharArray(),SimpleCharStream.getPosition()-varName.length(),SimpleCharStream.getPosition()), - initializer, - VariableDeclaration.EQUAL, - pos); + varName, + initializer, + VariableDeclaration.EQUAL, + varName.sourceStart); } } EmptyStatement EmptyStatement() : { - final int pos; + final Token token; } { - - {pos = SimpleCharStream.getPosition(); - return new EmptyStatement(pos-1,pos);} + token = + {return new EmptyStatement(token.sourceStart,token.sourceEnd);} } +/** + * used only by StatementExpressionList() which is used only by ForInit() and ForStatement() + */ Expression StatementExpression() : { final Expression expr,expr2; @@ -2327,11 +2511,11 @@ Expression StatementExpression() : | expr = PrimaryExpression() [ {return new PostfixedUnaryExpression(expr, - OperatorIds.PLUS_PLUS, - SimpleCharStream.getPosition());} + OperatorIds.PLUS_PLUS, + SimpleCharStream.getPosition());} | {return new PostfixedUnaryExpression(expr, - OperatorIds.MINUS_MINUS, - SimpleCharStream.getPosition());} + OperatorIds.MINUS_MINUS, + SimpleCharStream.getPosition());} ] {return expr;} } @@ -2517,12 +2701,12 @@ Expression SwitchLabel() : Break BreakStatement() : { Expression expression = null; - final int start = SimpleCharStream.getPosition(); + final Token token, token2; } { - [ expression = Expression() ] + token = [ expression = Expression() ] try { - + token2 = } catch (ParseException e) { errorMessage = "';' expected after 'break' keyword"; errorLevel = ERROR; @@ -2530,7 +2714,7 @@ Break BreakStatement() : errorEnd = SimpleCharStream.getPosition() + 1; throw e; } - {return new Break(expression, start, SimpleCharStream.getPosition());} + {return new Break(expression, token.sourceStart, token2.sourceEnd);} } IfStatement IfStatement() : @@ -2538,9 +2722,11 @@ IfStatement IfStatement() : final int pos = SimpleCharStream.getPosition(); final Expression condition; final IfStatement ifStatement; + Token token; } { - condition = Condition("if") ifStatement = IfStatement0(condition, pos,pos+2) + token = condition = Condition("if") ifStatement = IfStatement0(condition, + token.sourceStart,token.sourceStart+2) {return ifStatement;} } @@ -2557,7 +2743,7 @@ Expression Condition(final String keyword) : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length(); errorEnd = errorStart +1; - processParseException(e); + processParseExceptionDebug(e); } condition = Expression() try { @@ -2567,7 +2753,7 @@ Expression Condition(final String keyword) : errorLevel = ERROR; errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1; errorEnd = SimpleCharStream.getPosition() + 1; - processParseException(e); + processParseExceptionDebug(e); } {return condition;} } @@ -2784,13 +2970,13 @@ DoStatement DoStatement() : { final Statement action; final Expression condition; - final int pos = SimpleCharStream.getPosition(); + final Token token, token2; } { - action = Statement() condition = Condition("while") + token = action = Statement() condition = Condition("while") try { - - {return new DoStatement(condition,action,pos,SimpleCharStream.getPosition());} + token2 = + {return new DoStatement(condition,action,token.sourceStart,token2.sourceEnd);} } catch (ParseException e) { errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected"; errorLevel = ERROR; @@ -2804,11 +2990,11 @@ ForeachStatement ForeachStatement() : { Statement statement; Expression expression; - final int pos = SimpleCharStream.getPosition(); ArrayVariableDeclaration variable; + Token token; } { - + token = try { } catch (ParseException e) { @@ -2867,14 +3053,14 @@ ForeachStatement ForeachStatement() : {return new ForeachStatement(expression, variable, statement, - pos, - SimpleCharStream.getPosition());} + token.sourceStart, + statement.sourceEnd);} } ForStatement ForStatement() : { -final Token token; +final Token token,token2; final int pos = SimpleCharStream.getPosition(); Expression[] initializations = null; Expression condition = null; @@ -2899,7 +3085,12 @@ final int startBlock, endBlock; [ increments = StatementExpressionList() ] ( action = Statement() - {return new ForStatement(initializations,condition,increments,action,pos,SimpleCharStream.getPosition());} + {return new ForStatement(initializations, + condition, + increments, + action, + token.sourceStart, + action.sourceEnd);} | {startBlock = SimpleCharStream.getPosition();} @@ -2927,11 +3118,18 @@ final int startBlock, endBlock; throw e; } try { - + token2 = { final Statement[] stmtsArray = new Statement[list.size()]; list.toArray(stmtsArray); - return new ForStatement(initializations,condition,increments,new Block(stmtsArray,startBlock,endBlock),pos,SimpleCharStream.getPosition());} + return new ForStatement(initializations, + condition, + increments, + new Block(stmtsArray, + stmtsArray[0].sourceStart, + stmtsArray[stmtsArray.length-1].sourceEnd), + token.sourceStart, + token2.sourceEnd);} } catch (ParseException e) { errorMessage = "';' expected after 'endfor' keyword"; errorLevel = ERROR; @@ -2964,21 +3162,22 @@ Expression[] StatementExpressionList() : expr = StatementExpression() {list.add(expr);} ( StatementExpression() {list.add(expr);})* { - final Expression[] exprsArray = new Expression[list.size()]; - list.toArray(exprsArray); - return exprsArray;} + final Expression[] exprsArray = new Expression[list.size()]; + list.toArray(exprsArray); + return exprsArray; + } } Continue ContinueStatement() : { Expression expr = null; - final int pos = SimpleCharStream.getPosition(); + final Token token,token2; } { - [ expr = Expression() ] + token = [ expr = Expression() ] try { - - {return new Continue(expr,pos,SimpleCharStream.getPosition());} + token2 = + {return new Continue(expr,token.sourceStart,token2.sourceEnd);} } catch (ParseException e) { errorMessage = "';' expected after 'continue' statement"; errorLevel = ERROR; @@ -2991,13 +3190,13 @@ Continue ContinueStatement() : ReturnStatement ReturnStatement() : { Expression expr = null; - final int pos = SimpleCharStream.getPosition(); + final Token token,token2; } { - [ expr = Expression() ] + token = [ expr = Expression() ] try { - - {return new ReturnStatement(expr,pos,SimpleCharStream.getPosition());} + token2 = + {return new ReturnStatement(expr,token.sourceStart,token2.sourceEnd);} } catch (ParseException e) { errorMessage = "';' expected after 'return' statement"; errorLevel = ERROR;