CHOICE_AMBIGUITY_CHECK = 2;
OTHER_AMBIGUITY_CHECK = 1;
STATIC = true;
- DEBUG_PARSER = false;
+ DEBUG_PARSER = true;
DEBUG_LOOKAHEAD = false;
DEBUG_TOKEN_MANAGER = false;
OPTIMIZE_TOKEN_MANAGER = false;
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.
/** The cursor in expression stack. */
private static int nodePtr;
- private static final boolean PARSER_DEBUG = false;
+ private static final boolean PARSER_DEBUG = true;
public final void setFileToParse(final IFile fileToParse) {
PHPParser.fileToParse = fileToParse;
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.
*/
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";
}
}
- 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);
<DOLLAR_ID: <DOLLAR> <IDENTIFIER>>
}
+void phpTest() :
+{}
+{
+ Php()
+ <EOF>
+}
+
void phpFile() :
{}
{
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
}
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
[
<EXTENDS>
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
superclassNameImage = SYNTAX_ERROR_CHAR;
}
]
}
ClassBody(classDeclaration)
{currentSegment = (OutlineableWithChildren) currentSegment.getParent();
- classDeclaration.sourceEnd = SimpleCharStream.getPosition();
+ classDeclaration.setSourceEnd(SimpleCharStream.getPosition());
pushOnAstNodes(classDeclaration);
return classDeclaration;}
}
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
( ClassBodyDeclaration(classDeclaration) )*
try {
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
}
{
<VAR> variableDeclaration = VariableDeclaratorNoSuffix()
{arrayList.add(variableDeclaration);
- outlineInfo.addVariable(new String(variableDeclaration.name));}
+ outlineInfo.addVariable(new String(variableDeclaration.name()));}
(
<COMMA> variableDeclaration = VariableDeclaratorNoSuffix()
{arrayList.add(variableDeclaration);
- outlineInfo.addVariable(new String(variableDeclaration.name));}
+ outlineInfo.addVariable(new String(variableDeclaration.name()));}
)*
try {
<SEMICOLON>
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
{list = new VariableDeclaration[arrayList.size()];
/**
* 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 = <DOLLAR_ID>
+ {final int pos = SimpleCharStream.getPosition()-varName.image.length();}
[
<ASSIGN>
try {
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,
- varName.image.substring(1).toCharArray(),
+ new Variable(varName.image.substring(1),SimpleCharStream.getPosition()-varName.image.length()-1,SimpleCharStream.getPosition()),
pos,
SimpleCharStream.getPosition());
}
return new VariableDeclaration(currentSegment,
- varName.image.substring(1).toCharArray(),
+ new Variable(varName.image.substring(1),SimpleCharStream.getPosition()-varName.image.length()-1,SimpleCharStream.getPosition()),
initializer,
VariableDeclaration.EQUAL,
pos);
}
}
+/**
+ * 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()
[
<ASSIGN>
try {
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,
- varName.toCharArray(),
- pos,
- SimpleCharStream.getPosition());
+ variable,
+ pos,
+ SimpleCharStream.getPosition());
}
return new VariableDeclaration(currentSegment,
- varName.toCharArray(),
- initializer,
- VariableDeclaration.EQUAL,
- pos);
+ variable,
+ initializer,
+ VariableDeclaration.EQUAL,
+ pos);
}
}
* 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";
* 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 = <DOLLAR_ID> [<LBRACE> expression = Expression() <RBRACE>]
+ token = <DOLLAR_ID> {pos = SimpleCharStream.getPosition()-token.image.length();}
+ [<LBRACE> expression = Expression() <RBRACE>]
{
if (expression == null) {
- return token.image.substring(1);
+ return new Variable(token.image.substring(1),pos,SimpleCharStream.getPosition());
}
- 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,pos,SimpleCharStream.getPosition());
}
|
- <DOLLAR> expr = VariableName()
- {return expr;}
+ <DOLLAR> {pos = SimpleCharStream.getPosition()-1;}
+ expr = VariableName()
+ {return new Variable(expr,pos,SimpleCharStream.getPosition());}
}
/**
* A Variable name (without the $)
* @return a variable name String
*/
-String VariableName():
+Variable VariableName():
{
final StringBuffer buff;
- final String expr;
+ String expr;
+ final Variable var;
Expression expression = null;
final Token token;
+ int pos;
}
{
- <LBRACE> expression = Expression() <RBRACE>
- {buff = new StringBuffer("{");
- buff.append(expression.toStringExpression());
+ <LBRACE>
+ {pos = SimpleCharStream.getPosition()-1;}
+ expression = Expression() <RBRACE>
+ {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 Variable(expr,
+ pos,
+ SimpleCharStream.getPosition());
+
+ }
|
- token = <IDENTIFIER> [<LBRACE> expression = Expression() <RBRACE>]
+ token = <IDENTIFIER>
+ {pos = SimpleCharStream.getPosition() - token.image.length();}
+ [<LBRACE> expression = Expression() <RBRACE>]
{
if (expression == null) {
- return token.image;
+ return new Variable(token.image,
+ pos,
+ SimpleCharStream.getPosition());
}
- 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 = buff.toString();
+ return new Variable(expr,
+ pos,
+ SimpleCharStream.getPosition());
}
|
- <DOLLAR> expr = VariableName()
+ <DOLLAR> {pos = SimpleCharStream.getPosition() - 1;}
+ var = VariableName()
{
- buff = new StringBuffer("$");
- buff.append(expr);
- return buff.toString();
+ return new Variable(var,
+ pos,
+ SimpleCharStream.getPosition());
}
|
- token = <DOLLAR_ID> {return token.image;}
+ token = <DOLLAR_ID>
+ {
+ pos = SimpleCharStream.getPosition();
+ return new Variable(token.image,
+ pos-token.image.length(),
+ pos);
+ }
}
Expression VariableInitializer() :
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
formalParameters = FormalParameters()
{MethodDeclaration method = new MethodDeclaration(currentSegment,
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
[
var = FormalParameter()
- {parameters.put(new String(var.name),var);}
+ {parameters.put(new String(var.name()),var);}
(
<COMMA> var = FormalParameter()
- {parameters.put(new String(var.name),var);}
+ {parameters.put(new String(var.name()),var);}
)*
]
try {
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
{return parameters;}
}
final Expression expr;
Expression initializer = null;
final int pos = SimpleCharStream.getPosition();
+ int assignOperator = -1;
}
{
- expr = ConditionalExpression() {return expr;}
+ LOOKAHEAD(1)
+ expr = ConditionalExpression()
+ [
+ assignOperator = AssignmentOperator()
+ try {
+ initializer = Expression()
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ throw e;
+ }
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
+ errorLevel = ERROR;
+ errorEnd = SimpleCharStream.getPosition();
+ throw e;
+ }
+ ]
+ {
+ if (assignOperator != -1) {// todo : change this, very very bad :(
+ if (expr instanceof AbstractVariable) {
+ return new VariableDeclaration(currentSegment,
+ (AbstractVariable) expr,
+ pos,
+ SimpleCharStream.getPosition());
+ }
+ 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;
+ }
| expr = ExpressionWBang() {return expr;}
}
Expression ExpressionNoBang() :
{
- Expression expr = null;
- int assignOperator = -1;
- String var;
- final int pos = SimpleCharStream.getPosition();
+ Expression expr;
}
{
- expr = PrintExpression() {return expr;}
-| expr = ListExpression() {return expr;}
+ expr = ListExpression() {return expr;}
|
- var = VariableDeclaratorId()
- [
- assignOperator = AssignmentOperator()
- try {
- expr = Expression()
- } catch (ParseException e) {
- if (errorMessage != null) {
- throw e;
- }
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
- errorLevel = ERROR;
- errorEnd = SimpleCharStream.getPosition();
- throw e;
- }
- ]
- {
- if (assignOperator == -1) {
- return new VariableDeclaration(currentSegment,
- var.toCharArray(),
- pos,
- SimpleCharStream.getPosition());
- }
- return new VariableDeclaration(currentSegment,
- var.toCharArray(),
- expr,
- assignOperator,
- pos);
- }
- {return expr;}
+ expr = PrintExpression() {return expr;}
}
/**
{
expr = MultiplicativeExpression()
(
- LOOKAHEAD(1)
- ( <PLUS> {operator = OperatorIds.PLUS;}
- | <MINUS> {operator = OperatorIds.MINUS;} )
+ LOOKAHEAD(1)
+ ( <PLUS> {operator = OperatorIds.PLUS;}
+ | <MINUS> {operator = OperatorIds.MINUS;}
+ )
expr2 = MultiplicativeExpression()
{expr = new BinaryExpression(expr,expr2,operator);}
)*
final int pos = SimpleCharStream.getPosition();
}
{
- <BIT_AND> expr = UnaryExpressionNoPrefix()
+ /* <BIT_AND> 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();
}
{
<AT>
- expr = AtUnaryExpression()
+ expr = AtNotUnaryExpression()
{return new PrefixedUnaryExpression(expr,OperatorIds.AT,pos);}
|
+ <BANG>
+ expr = AtNotUnaryExpression()
+ {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,pos);}
+|
expr = UnaryExpressionNoPrefix()
{return expr;}
}
Expression UnaryExpressionNoPrefix() :
{
final Expression expr;
- final int operator;
final int pos = SimpleCharStream.getPosition();
}
{
- (
- <PLUS> {operator = OperatorIds.PLUS;}
- |
- <MINUS> {operator = OperatorIds.MINUS;}
- )
- expr = UnaryExpression()
- {return new PrefixedUnaryExpression(expr,operator,pos);}
+ <PLUS> expr = AtNotUnaryExpression() {return new PrefixedUnaryExpression(expr,OperatorIds.PLUS,pos);}
+|
+ <MINUS> expr = AtNotUnaryExpression() {return new PrefixedUnaryExpression(expr,OperatorIds.MINUS,pos);}
|
expr = PreIncDecExpression()
{return expr;}
Expression PrimaryExpression() :
{
- Expression expr;
+ Expression expr = null;
+ Expression expr2;
int assignOperator = -1;
final Token identifier;
final String var;
- final int pos = SimpleCharStream.getPosition();
+ final int pos;
}
{
- identifier = <IDENTIFIER>
- {expr = new ConstantIdentifier(token.image.toCharArray(),
- pos,
- SimpleCharStream.getPosition());}
- (expr = PrimarySuffix(expr))*
+ token = <IDENTIFIER>
+ {
+ pos = SimpleCharStream.getPosition();
+ expr = new ConstantIdentifier(token.image.toCharArray(),
+ pos-token.image.length(),
+ pos);
+ }
+ (
+ <STATICCLASSACCESS> expr2 = ClassIdentifier()
+ {expr = new ClassAccess(expr,
+ expr2,
+ ClassAccess.STATIC);}
+ )*
+ [ expr = Arguments(expr) ]
{return expr;}
|
- expr = ArrayDeclarator()
+ expr = VariableDeclaratorId()
+ [ expr = Arguments(expr) ]
{return expr;}
|
- <NEW> expr = ClassIdentifier()
- {expr = new PrefixedUnaryExpression(expr,OperatorIds.NEW,pos);}
- [expr = Arguments(expr)]
+ <NEW>
+ {pos = SimpleCharStream.getPosition();}
+ expr = ClassIdentifier()
+ {expr = new PrefixedUnaryExpression(expr,
+ OperatorIds.NEW,
+ pos-3);
+ }
+ [ expr = Arguments(expr) ]
+ {return expr;}
+|
+ expr = ArrayDeclarator()
{return expr;}
-}
-
-AbstractSuffixExpression PrimarySuffix(final Expression prefix) :
-{
- final AbstractSuffixExpression suffix;
- final Expression expr;
-}
-{
- suffix = Arguments(prefix) {return suffix;}
-| suffix = VariableSuffix(prefix) {return suffix;}
-| <STATICCLASSACCESS> expr = ClassIdentifier()
- {suffix = new ClassAccess(prefix,
- expr,
- ClassAccess.STATIC);
- return suffix;}
}
/**
pos);}
}
-ConstantIdentifier ClassIdentifier():
+Expression ClassIdentifier():
{
- final String expr;
+ final Expression expr;
final Token token;
- final int pos = SimpleCharStream.getPosition();
final ConstantIdentifier type;
}
{
- token = <IDENTIFIER> {return new ConstantIdentifier(token.image.toCharArray(),
- pos,
- SimpleCharStream.getPosition());}
-| type = Type() {return type;}
-| expr = VariableDeclaratorId() {return new ConstantIdentifier(expr.toCharArray(),
- pos,
- SimpleCharStream.getPosition());}
+ token = <IDENTIFIER>
+ {final int pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(token.image.toCharArray(),
+ pos-token.image.length(),
+ pos);}
+| 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;
}
throw e;
}
{return new ClassAccess(prefix,
- new ConstantIdentifier(expr.toCharArray(),pos,SimpleCharStream.getPosition()),
+ expr,
ClassAccess.NORMAL);}
|
<LBRACKET> [ expression = Expression() | expression = Type() ] //Not good
/**
* A Statement without break.
+ * @return a statement
*/
Statement StatementNoBreak() :
{
}
{
LOOKAHEAD(2)
- statement = Expression()
- try {
- <SEMICOLON>
- } catch (ParseException e) {
- if (e.currentToken.next.kind != PHPParserConstants.PHPEND) {
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
- errorLevel = ERROR;
- errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = SimpleCharStream.getPosition() + 1;
- throw e;
- }
- }
- {return statement;}
+ statement = expressionStatement() {return statement;}
| LOOKAHEAD(1)
- statement = LabeledStatement() {return statement;}
-| statement = Block() {return statement;}
-| statement = EmptyStatement() {return statement;}
-/*| statement = StatementExpression()
- try {
- <SEMICOLON>
- } catch (ParseException e) {
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
- errorLevel = ERROR;
- errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = SimpleCharStream.getPosition() + 1;
- throw e;
- }
- {return statement;} */
+ statement = LabeledStatement() {return statement;}
+| statement = Block() {return statement;}
+| statement = EmptyStatement() {return statement;}
| statement = SwitchStatement() {return statement;}
| statement = IfStatement() {return statement;}
| statement = WhileStatement() {return statement;}
| statement = defineStatement() {currentSegment.add((Outlineable)statement);return statement;}
}
+/**
+ * A statement expression.
+ * expression ;
+ * @return an expression
+ */
+Statement expressionStatement() :
+{
+ final Statement statement;
+}
+{
+ statement = Expression()
+ try {
+ <SEMICOLON>
+ } catch (ParseException e) {
+ if (e.currentToken.next.kind != PHPParserConstants.PHPEND) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+ }
+ {return statement;}
+}
+
Define defineStatement() :
{
final int start = SimpleCharStream.getPosition();
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
try {
defineName = Expression()
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
try {
defineValue = Expression()
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
{return new Define(currentSegment,
defineName,
ListExpression ListExpression() :
{
- String expr = null;
+ Expression expr = null;
final Expression expression;
final ArrayList list = new ArrayList();
final int pos = SimpleCharStream.getPosition();
}
[ <ASSIGN> 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());}
}
/**
GlobalStatement GlobalStatement() :
{
final int pos = SimpleCharStream.getPosition();
- String expr;
+ Variable expr;
final ArrayList vars = new ArrayList();
final GlobalStatement global;
}
{
<GLOBAL>
- expr = VariableDeclaratorId()
+ expr = Variable()
{vars.add(expr);}
(<COMMA>
- expr = VariableDeclaratorId()
+ expr = Variable()
{vars.add(expr);}
)*
try {
<SEMICOLON>
{
- 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,
+ variables,
pos,
SimpleCharStream.getPosition());
currentSegment.add(global);
VariableDeclaration expr;
}
{
- <STATIC> expr = VariableDeclarator() {vars.add(new String(expr.name));}
- (<COMMA> expr = VariableDeclarator() {vars.add(new String(expr.name));})*
+ <STATIC> expr = VariableDeclarator() {vars.add(expr);}
+ (
+ <COMMA> expr = VariableDeclarator() {vars.add(expr);}
+ )*
try {
<SEMICOLON>
{
- 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,
+ pos,
+ SimpleCharStream.getPosition());}
} catch (ParseException e) {
errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. a ';' was expected";
errorLevel = ERROR;
return statement;}
}
+/**
+ * used only by ForInit()
+ */
VariableDeclaration[] LocalVariableDeclaration() :
{
final ArrayList list = new ArrayList();
return vars;}
}
+/**
+ * used only by LocalVariableDeclaration().
+ */
VariableDeclaration LocalVariableDeclarator() :
{
- final String varName;
+ final Variable varName;
Expression initializer = null;
final int pos = SimpleCharStream.getPosition();
}
{
- varName = VariableDeclaratorId() [ <ASSIGN> initializer = Expression() ]
+ varName = Variable() [ <ASSIGN> initializer = Expression() ]
{
if (initializer == null) {
return new VariableDeclaration(currentSegment,
- varName.toCharArray(),
- pos,
- SimpleCharStream.getPosition());
+ varName,
+ pos,
+ SimpleCharStream.getPosition());
}
return new VariableDeclaration(currentSegment,
- varName.toCharArray(),
- initializer,
- VariableDeclaration.EQUAL,
- pos);
+ varName,
+ initializer,
+ VariableDeclaration.EQUAL,
+ pos);
}
}
return new EmptyStatement(pos-1,pos);}
}
+/**
+ * used only by StatementExpressionList() which is used only by ForInit() and ForStatement()
+ */
Expression StatementExpression() :
{
final Expression expr,expr2;
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length();
errorEnd = errorStart +1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
condition = Expression()
try {
errorLevel = ERROR;
errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
errorEnd = SimpleCharStream.getPosition() + 1;
- processParseException(e);
+ processParseExceptionDebug(e);
}
{return condition;}
}