import org.eclipse.jface.preference.IPreferenceStore;
import java.util.Hashtable;
-import java.util.Enumeration;
+import java.util.ArrayList;
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.*;
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;
/**
* A new php parser.
* given with JavaCC. You can get JavaCC at http://www.webgain.com
* You can test the parser with the PHPParserTestCase2.java
* @author Matthieu Casanova
+ * @version $Reference: 1.0$
*/
public final class PHPParser extends PHPParserSuperclass {
private static IFile fileToParse;
/** The current segment. */
- private static PHPSegmentWithChildren currentSegment;
+ private static OutlineableWithChildren currentSegment;
private static final String PARSE_ERROR_STRING = "Parse error"; //$NON-NLS-1$
private static final String PARSE_WARNING_STRING = "Warning"; //$NON-NLS-1$
- PHPOutlineInfo outlineInfo;
-
- private static PHPFunctionDeclaration currentFunction;
- private static boolean assigning;
+ static PHPOutlineInfo outlineInfo;
/** The error level of the current ParseException. */
private static int errorLevel = ERROR;
private static int errorStart = -1;
private static int errorEnd = -1;
+ private static PHPDocument phpDocument;
- //ast stack
- private final static int AstStackIncrement = 100;
- /** The stack of node. */
- private static AstNode[] astStack;
+ private static final char[] SYNTAX_ERROR_CHAR = {'s','y','n','t','a','x',' ','e','r','r','o','r'};
+ /**
+ * The point where html starts.
+ * It will be used by the token manager to create HTMLCode objects
+ */
+ public static int htmlStart;
+
+ //ast stack
+ private final static int AstStackIncrement = 100;
+ /** The stack of node. */
+ private static AstNode[] nodes;
/** The cursor in expression stack. */
- private static int expressionPtr;
+ private static int nodePtr;
public final void setFileToParse(final IFile fileToParse) {
this.fileToParse = fileToParse;
this.fileToParse = fileToParse;
}
- public static final void phpParserTester(final String strEval) throws CoreException, ParseException {
- PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING);
- 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();
+ /**
+ * Reinitialize the parser.
+ */
+ private static final void init() {
+ nodes = new AstNode[AstStackIncrement];
+ nodePtr = -1;
+ htmlStart = 0;
}
- public static final void htmlParserTester(final File fileName) throws CoreException, ParseException {
+ /**
+ * Add an php node on the stack.
+ * @param node the node that will be added to the stack
+ */
+ private static final void pushOnAstNodes(final AstNode node) {
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);
+ nodes[++nodePtr] = node;
+ } catch (IndexOutOfBoundsException e) {
+ final int oldStackLength = nodes.length;
+ final AstNode[] oldStack = nodes;
+ nodes = new AstNode[oldStackLength + AstStackIncrement];
+ System.arraycopy(oldStack, 0, nodes, 0, oldStackLength);
+ nodePtr = oldStackLength;
+ nodes[nodePtr] = node;
}
- ReInit(stream);
- astStack = new AstNode[AstStackIncrement];
- phpFile();
}
public final PHPOutlineInfo parseInfo(final Object parent, final String s) {
- outlineInfo = new PHPOutlineInfo(parent);
- currentSegment = outlineInfo.getDeclarations();
+ phpDocument = new PHPDocument(parent,"_root".toCharArray());
+ currentSegment = phpDocument;
+ outlineInfo = new PHPOutlineInfo(parent, currentSegment);
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];
+ init();
try {
parse();
+ phpDocument.nodes = new AstNode[nodes.length];
+ System.arraycopy(nodes,0,phpDocument.nodes,0,nodes.length);
+ if (PHPeclipsePlugin.DEBUG) {
+ PHPeclipsePlugin.log(1,phpDocument.toString());
+ }
} catch (ParseException e) {
processParseException(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();
+ errorStart = SimpleCharStream.getPosition();
errorEnd = errorStart + 1;
}
setMarker(e);
if (errorStart == -1) {
setMarker(fileToParse,
errorMessage,
- jj_input_stream.tokenBegin,
- jj_input_stream.tokenBegin + e.currentToken.image.length(),
+ SimpleCharStream.tokenBegin,
+ SimpleCharStream.tokenBegin + e.currentToken.image.length(),
errorLevel,
"Line " + e.currentToken.beginLine);
} else {
}
}
- /**
- * Create markers according to the external parser output
- */
- 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;
- boolean flag = true;
- while ((brIndx = output.indexOf("<br />", indx)) != -1) {
- // newer php error output (tested with 4.2.3)
- scanLine(output, file, indx, brIndx);
- indx = brIndx + 6;
- flag = false;
- }
- if (flag) {
- while ((brIndx = output.indexOf("<br>", indx)) != -1) {
- // older php error output (tested with 4.2.3)
- scanLine(output, file, indx, brIndx);
- indx = brIndx + 4;
- }
- }
- }
-
private static void scanLine(final String output,
final IFile file,
final int indx,
jj_input_stream = new SimpleCharStream(stream, 1, 1);
}
ReInit(stream);
- astStack = new AstNode[AstStackIncrement];
+ init();
try {
parse();
} catch (ParseException e) {
}
}
+ /**
+ * Put a new html block in the stack.
+ */
+ public static final void createNewHTMLCode() {
+ final int currentPosition = SimpleCharStream.getPosition();
+ if (currentPosition == htmlStart || currentPosition > SimpleCharStream.currentBuffer.length()) {
+ return;
+ }
+ final char[] chars = SimpleCharStream.currentBuffer.substring(htmlStart,currentPosition+1).toCharArray();
+ pushOnAstNodes(new HTMLCode(chars, htmlStart,currentPosition));
+ }
+
+ /**
+ * Create a new task.
+ */
+ public static final void createNewTask() {
+ final int currentPosition = SimpleCharStream.getPosition();
+ final String todo = SimpleCharStream.currentBuffer.substring(currentPosition+1,
+ SimpleCharStream.currentBuffer.indexOf("\n",
+ currentPosition)-1);
+ try {
+ setMarker(fileToParse,
+ "todo : " + todo,
+ SimpleCharStream.getBeginLine(),
+ TASK,
+ "Line "+SimpleCharStream.getBeginLine());
+ } catch (CoreException e) {
+ PHPeclipsePlugin.log(e);
+ }
+ }
+
private static final void parse() throws ParseException {
phpFile();
}
<DEFAULT> TOKEN :
{
- <PHPSTARTSHORT : "<?"> : PHPPARSING
-| <PHPSTARTLONG : "<?php"> : PHPPARSING
-| <PHPECHOSTART : "<?="> : PHPPARSING
+ <PHPSTARTSHORT : "<?"> {PHPParser.createNewHTMLCode();} : PHPPARSING
+| <PHPSTARTLONG : "<?php"> {PHPParser.createNewHTMLCode();} : PHPPARSING
+| <PHPECHOSTART : "<?="> {PHPParser.createNewHTMLCode();} : PHPPARSING
}
<PHPPARSING> TOKEN :
{
- <PHPEND :"?>"> : DEFAULT
+ <PHPEND :"?>"> {PHPParser.htmlStart = SimpleCharStream.getPosition();} : DEFAULT
}
/* Skip any character if we are not in php mode */
<PHPPARSING> SPECIAL_TOKEN :
{
"//" : IN_SINGLE_LINE_COMMENT
-|
- "#" : IN_SINGLE_LINE_COMMENT
-|
- <"/**" ~["/"]> { input_stream.backup(1); } : IN_FORMAL_COMMENT
-|
- "/*" : IN_MULTI_LINE_COMMENT
+| "#" : IN_SINGLE_LINE_COMMENT
+| <"/**" ~["/"]> { input_stream.backup(1); } : IN_FORMAL_COMMENT
+| "/*" : IN_MULTI_LINE_COMMENT
}
<IN_SINGLE_LINE_COMMENT> SPECIAL_TOKEN :
{
<SINGLE_LINE_COMMENT: "\n" | "\r" | "\r\n" > : PHPPARSING
+| "?>" : DEFAULT
}
-<IN_SINGLE_LINE_COMMENT> SPECIAL_TOKEN :
+<IN_SINGLE_LINE_COMMENT,IN_FORMAL_COMMENT,IN_MULTI_LINE_COMMENT> SPECIAL_TOKEN :
{
- <SINGLE_LINE_COMMENT_PHPEND : "?>" > : DEFAULT
+ "todo" {PHPParser.createNewTask();}
}
-<IN_FORMAL_COMMENT>
-SPECIAL_TOKEN :
+<IN_FORMAL_COMMENT> SPECIAL_TOKEN :
{
- <FORMAL_COMMENT: "*/" > : PHPPARSING
+ "*/" : PHPPARSING
}
-<IN_MULTI_LINE_COMMENT>
-SPECIAL_TOKEN :
+<IN_MULTI_LINE_COMMENT> SPECIAL_TOKEN :
{
- <MULTI_LINE_COMMENT: "*/" > : PHPPARSING
+ "*/" : PHPPARSING
}
<IN_SINGLE_LINE_COMMENT,IN_FORMAL_COMMENT,IN_MULTI_LINE_COMMENT>
| <INCLUDE_ONCE : "include_once">
| <REQUIRE_ONCE : "require_once">
| <GLOBAL : "global">
+| <DEFINE : "define">
| <STATIC : "static">
| <CLASSACCESS : "->">
| <STATICCLASSACCESS : "::">
| <INTEGER : "integer">
}
+//Misc token
<PHPPARSING> TOKEN :
{
- <_ORL : "OR">
-| <_ANDL : "AND">
+ <AT : "@">
+| <DOLLAR : "$">
+| <BANG : "!">
+| <TILDE : "~">
+| <HOOK : "?">
+| <COLON : ":">
+}
+
+/* OPERATORS */
+<PHPPARSING> TOKEN :
+{
+ <OR_OR : "||">
+| <AND_AND : "&&">
+| <PLUS_PLUS : "++">
+| <MINUS_MINUS : "--">
+| <PLUS : "+">
+| <MINUS : "-">
+| <STAR : "*">
+| <SLASH : "/">
+| <BIT_AND : "&">
+| <BIT_OR : "|">
+| <XOR : "^">
+| <REMAINDER : "%">
+| <LSHIFT : "<<">
+| <RSIGNEDSHIFT : ">>">
+| <RUNSIGNEDSHIFT : ">>>">
+| <_ORL : "OR">
+| <_ANDL : "AND">
}
/* LITERALS */
<PHPPARSING> TOKEN :
{
- < INTEGER_LITERAL:
+ <INTEGER_LITERAL:
<DECIMAL_LITERAL> (["l","L"])?
| <HEX_LITERAL> (["l","L"])?
| <OCTAL_LITERAL> (["l","L"])?
>
|
- < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
+ <#DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
|
- < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
+ <#HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
|
- < #OCTAL_LITERAL: "0" (["0"-"7"])* >
+ <#OCTAL_LITERAL: "0" (["0"-"7"])* >
|
- < FLOATING_POINT_LITERAL:
+ <FLOATING_POINT_LITERAL:
(["0"-"9"])+ "." (["0"-"9"])* (<EXPONENT>)? (["f","F","d","D"])?
| "." (["0"-"9"])+ (<EXPONENT>)? (["f","F","d","D"])?
| (["0"-"9"])+ <EXPONENT> (["f","F","d","D"])?
| (["0"-"9"])+ (<EXPONENT>)? ["f","F","d","D"]
>
|
- < #EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+ >
+ <#EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+ >
|
- < STRING_LITERAL: (<STRING_1> | <STRING_2> | <STRING_3>)>
-| < STRING_1:
- "\""
- (
- ~["\""] | ~["{"]
- |
- "\\\""
- | "{" ~["\""] "}"
- )*
- "\""
- >
-| < STRING_2:
- "'"
- (
- ~["'"]
- |
- "\\'"
- )*
-
- "'"
- >
-| < STRING_3:
- "`"
- (
- ~["`"]
- |
- "\\`"
- )*
- "`"
- >
+ <STRING_LITERAL: (<STRING_1> | <STRING_2> | <STRING_3>)>
+| <STRING_1: "\"" ( ~["\"","\\"] | "\\" ~[] )* "\"">
+| <STRING_2: "'" ( ~["'","\\"] | "\\" ~[] )* "'">
+| <STRING_3: "`" ( ~["`","\\"] | "\\" ~[] )* "`">
}
/* IDENTIFIERS */
{
<GT : ">">
| <LT : "<">
-| <EQ : "==">
+| <EQUAL_EQUAL : "==">
| <LE : "<=">
| <GE : ">=">
-| <NE : "!=">
+| <NOT_EQUAL : "!=">
| <DIF : "<>">
| <BANGDOUBLEEQUAL : "!==">
| <TRIPLEEQUAL : "===">
| <DOTASSIGN : ".=">
| <REMASSIGN : "%=">
| <TILDEEQUAL : "~=">
-}
-
-/* OPERATORS */
-<PHPPARSING> TOKEN :
-{
- <AT : "@">
-| <DOLLAR : "$">
-| <BANG : "!">
-| <TILDE : "~">
-| <HOOK : "?">
-| <COLON : ":">
-| <SC_OR : "||">
-| <SC_AND : "&&">
-| <INCR : "++">
-| <DECR : "--">
-| <PLUS : "+">
-| <MINUS : "-">
-| <STAR : "*">
-| <SLASH : "/">
-| <BIT_AND : "&">
-| <BIT_OR : "|">
-| <XOR : "^">
-| <REM : "%">
-| <LSHIFT : "<<">
-| <RSIGNEDSHIFT : ">>">
-| <RUNSIGNEDSHIFT : ">>>">
| <LSHIFTASSIGN : "<<=">
| <RSIGNEDSHIFTASSIGN : ">>=">
}
<PHPPARSING> TOKEN :
{
- < DOLLAR_ID: <DOLLAR> <IDENTIFIER> >
-}
-
-void phpTest() :
-{}
-{
- Php()
- <EOF>
+ <DOLLAR_ID: <DOLLAR> <IDENTIFIER>>
}
void phpFile() :
{
try {
(PhpBlock())*
- <EOF>
+ {PHPParser.createNewHTMLCode();}
} catch (TokenMgrError e) {
PHPeclipsePlugin.log(e);
errorStart = SimpleCharStream.getPosition();
*/
void PhpBlock() :
{
- final int start = jj_input_stream.getPosition();
+ final int start = SimpleCharStream.getPosition();
+ final PHPEchoBlock phpEchoBlock;
}
{
- phpEchoBlock()
+ phpEchoBlock = phpEchoBlock()
+ {pushOnAstNodes(phpEchoBlock);}
|
- [ <PHPSTARTLONG>
+ [ <PHPSTARTLONG>
| <PHPSTARTSHORT>
{try {
setMarker(fileToParse,
"You should use '<?php' instead of '<?' it will avoid some problems with XML",
start,
- jj_input_stream.getPosition(),
+ SimpleCharStream.getPosition(),
INFO,
"Line " + token.beginLine);
} catch (CoreException e) {
} catch (ParseException e) {
errorMessage = "'?>' expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
}
-void phpEchoBlock() :
-{}
+PHPEchoBlock phpEchoBlock() :
{
- <PHPECHOSTART> Expression() [ <SEMICOLON> ] <PHPEND>
+ final Expression expr;
+ final int pos = SimpleCharStream.getPosition();
+ final PHPEchoBlock echoBlock;
+}
+{
+ <PHPECHOSTART> expr = Expression() [ <SEMICOLON> ] <PHPEND>
+ {
+ echoBlock = new PHPEchoBlock(expr,pos,SimpleCharStream.getPosition());
+ pushOnAstNodes(echoBlock);
+ return echoBlock;}
}
void Php() :
(BlockStatement())*
}
-void ClassDeclaration() :
+ClassDeclaration ClassDeclaration() :
{
- final PHPClassDeclaration classDeclaration;
- final Token className;
+ final ClassDeclaration classDeclaration;
+ final Token className,superclassName;
final int pos;
+ char[] classNameImage = SYNTAX_ERROR_CHAR;
+ char[] superclassNameImage = null;
}
{
<CLASS>
+ {pos = SimpleCharStream.getPosition();}
try {
- {pos = jj_input_stream.getPosition();}
className = <IDENTIFIER>
+ {classNameImage = className.image.toCharArray();}
} 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;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
[
<EXTENDS>
try {
- <IDENTIFIER>
+ superclassName = <IDENTIFIER>
+ {superclassNameImage = superclassName.image.toCharArray();}
} 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;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ superclassNameImage = SYNTAX_ERROR_CHAR;
}
]
{
- if (currentSegment != null) {
- classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos);
+ if (superclassNameImage == null) {
+ classDeclaration = new ClassDeclaration(currentSegment,
+ classNameImage,
+ pos,
+ 0);
+ } else {
+ classDeclaration = new ClassDeclaration(currentSegment,
+ classNameImage,
+ superclassNameImage,
+ pos,
+ 0);
+ }
currentSegment.add(classDeclaration);
currentSegment = classDeclaration;
- }
- }
- ClassBody()
- {
- if (currentSegment != null) {
- currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
- }
}
+ ClassBody(classDeclaration)
+ {currentSegment = (OutlineableWithChildren) currentSegment.getParent();
+ classDeclaration.sourceEnd = SimpleCharStream.getPosition();
+ pushOnAstNodes(classDeclaration);
+ return classDeclaration;}
}
-void ClassBody() :
+void ClassBody(final ClassDeclaration classDeclaration) :
{}
{
try {
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- ( ClassBodyDeclaration() )*
+ ( ClassBodyDeclaration(classDeclaration) )*
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
/**
* A class can contain only methods and fields.
*/
-void ClassBodyDeclaration() :
-{}
+void ClassBodyDeclaration(final ClassDeclaration classDeclaration) :
{
- MethodDeclaration()
-|
- FieldDeclaration()
+ final MethodDeclaration method;
+ final FieldDeclaration field;
+}
+{
+ method = MethodDeclaration() {classDeclaration.addMethod(method);}
+| field = FieldDeclaration() {classDeclaration.addField(field);}
}
/**
* A class field declaration : it's var VariableDeclarator() (, VariableDeclarator())*;.
*/
-void FieldDeclaration() :
+FieldDeclaration FieldDeclaration() :
{
- PHPVarDeclaration variableDeclaration;
+ VariableDeclaration variableDeclaration;
+ final VariableDeclaration[] list;
+ final ArrayList arrayList = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
}
{
<VAR> variableDeclaration = VariableDeclarator()
- {
- if (currentSegment != null) {
- currentSegment.add(variableDeclaration);
- }
- }
- ( <COMMA>
- variableDeclaration = VariableDeclarator()
- {
- if (currentSegment != null) {
- currentSegment.add(variableDeclaration);
- }
- }
+ {arrayList.add(variableDeclaration);
+ outlineInfo.addVariable(new String(variableDeclaration.name));}
+ ( <COMMA> variableDeclaration = VariableDeclarator()
+ {arrayList.add(variableDeclaration);
+ outlineInfo.addVariable(new String(variableDeclaration.name));}
)*
try {
<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;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
+
+ {list = new VariableDeclaration[arrayList.size()];
+ arrayList.toArray(list);
+ return new FieldDeclaration(list,
+ pos,
+ SimpleCharStream.getPosition(),
+ currentSegment);}
}
-PHPVarDeclaration VariableDeclarator() :
+VariableDeclaration VariableDeclarator() :
{
- final String varName, varValue;
- final int pos = jj_input_stream.getPosition();
+ final String varName;
+ Expression initializer = null;
+ final int pos = SimpleCharStream.getPosition();
}
{
varName = VariableDeclaratorId()
[
<ASSIGN>
try {
- varValue = VariableInitializer()
- {return new PHPVarDeclaration(currentSegment,varName,pos,varValue);}
+ initializer = VariableInitializer()
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
]
- {return new PHPVarDeclaration(currentSegment,varName,pos);}
+ {
+ if (initializer == null) {
+ return new VariableDeclaration(currentSegment,
+ varName.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());
+ }
+ return new VariableDeclaration(currentSegment,
+ varName.toCharArray(),
+ initializer,
+ pos);
+ }
}
+/**
+ * A Variable name.
+ * @return the variable name (with suffix)
+ */
String VariableDeclaratorId() :
{
- String expr;
- final StringBuffer buff = new StringBuffer();
+ final String expr;
+ Expression expression = null;
+ final int pos = SimpleCharStream.getPosition();
+ ConstantIdentifier ex;
}
{
try {
expr = Variable()
- {buff.append(expr);}
- ( LOOKAHEAD(2) expr = VariableSuffix()
- {buff.append(expr);}
+ ( LOOKAHEAD(2)
+ {ex = new ConstantIdentifier(expr.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
+ expression = VariableSuffix(ex)
)*
- {return buff.toString();}
+ {
+ if (expression == null) {
+ return expr;
+ }
+ return expression.toStringExpression();
+ }
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
+/**
+ * Return a variablename without the $.
+ * @return a variable name
+ */
String Variable():
{
- String expr = null;
+ final StringBuffer buff;
+ Expression expression = null;
final Token token;
+ final String expr;
}
{
- token = <DOLLAR_ID> [<LBRACE> expr = Expression() <RBRACE>]
+ token = <DOLLAR_ID> [<LBRACE> expression = Expression() <RBRACE>]
{
- if (expr == null && !assigning) {
- if (currentFunction != null) {
- PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1));
- if (var != null) {
- var.getVariable().setUsed(true);
- }
- }
+ if (expression == null) {
return token.image.substring(1);
}
- return token + "{" + expr + "}";
+ buff = new StringBuffer(token.image);
+ buff.append("{");
+ buff.append(expression.toStringExpression());
+ buff.append("}");
+ return buff.toString();
}
|
<DOLLAR> expr = VariableName()
{return expr;}
}
+/**
+ * A Variable name (without the $)
+ * @return a variable name String
+ */
String VariableName():
{
-String expr = null;
-final Token token;
+ final StringBuffer buff;
+ final String expr;
+ Expression expression = null;
+ final Token token;
}
{
- <LBRACE> expr = Expression() <RBRACE>
- {return "{"+expr+"}";}
+ <LBRACE> expression = Expression() <RBRACE>
+ {buff = new StringBuffer("{");
+ buff.append(expression.toStringExpression());
+ buff.append("}");
+ return buff.toString();}
|
- token = <IDENTIFIER> [<LBRACE> expr = Expression() <RBRACE>]
+ token = <IDENTIFIER> [<LBRACE> expression = Expression() <RBRACE>]
{
- if (expr == null) {
- if (currentFunction != null) {
- PHPVarDeclaration var = currentFunction.getParameter(token.image);
- if (var != null) {
- var.getVariable().setUsed(true);
- }
- }
+ if (expression == null) {
return token.image;
}
- return token + "{" + expr + "}";
+ buff = new StringBuffer(token.image);
+ buff.append("{");
+ buff.append(expression.toStringExpression());
+ buff.append("}");
+ return buff.toString();
}
|
<DOLLAR> expr = VariableName()
{
- if (currentFunction != null) {
- PHPVarDeclaration var = currentFunction.getParameter(expr);
- if (var != null) {
- var.getVariable().setUsed(true);
- }
- }
- return "$" + expr;
+ buff = new StringBuffer("$");
+ buff.append(expr);
+ return buff.toString();
}
|
- token = <DOLLAR_ID>
- {
- if (currentFunction != null) {
- PHPVarDeclaration var = currentFunction.getParameter(token.image.substring(1));
- if (var != null) {
- var.getVariable().setUsed(true);
- }
- }
- return token.image + expr;
- }
-/*| pas besoin ?
- token = <DOLLAR_ID> [expr = VariableName()]
- {
- if (expr == null) {
- return token.image;
- }
- return token.image + expr;
- }*/
+ token = <DOLLAR_ID> {return token.image;}
}
-String VariableInitializer() :
+Expression VariableInitializer() :
{
- final String expr;
+ final Expression expr;
final Token token;
+ final int pos = SimpleCharStream.getPosition();
}
{
expr = Literal()
{return expr;}
|
<MINUS> (token = <INTEGER_LITERAL> | token = <FLOATING_POINT_LITERAL>)
- {return "-" + token.image;}
+ {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition()),
+ OperatorIds.MINUS,
+ pos);}
|
<PLUS> (token = <INTEGER_LITERAL> | token = <FLOATING_POINT_LITERAL>)
- {return "+" + token.image;}
+ {return new PrefixedUnaryExpression(new NumberLiteral(token.image.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition()),
+ OperatorIds.PLUS,
+ pos);}
|
expr = ArrayDeclarator()
{return expr;}
|
token = <IDENTIFIER>
- {return token.image;}
+ {return new ConstantIdentifier(token.image.toCharArray(),pos,SimpleCharStream.getPosition());}
}
-String ArrayVariable() :
+ArrayVariableDeclaration ArrayVariable() :
{
-String expr;
-final StringBuffer buff = new StringBuffer();
+final Expression expr,expr2;
}
{
expr = Expression()
- {buff.append(expr);}
- [<ARRAYASSIGN> expr = Expression()
- {buff.append("=>").append(expr);}]
- {return buff.toString();}
+ [<ARRAYASSIGN> expr2 = Expression()
+ {return new ArrayVariableDeclaration(expr,expr2);}
+ ]
+ {return new ArrayVariableDeclaration(expr,SimpleCharStream.getPosition());}
}
-String ArrayInitializer() :
+ArrayVariableDeclaration[] ArrayInitializer() :
{
-String expr;
-final StringBuffer buff = new StringBuffer("(");
+ ArrayVariableDeclaration expr;
+ final ArrayList list = new ArrayList();
}
{
<LPAREN> [ expr = ArrayVariable()
- {buff.append(expr);}
+ {list.add(expr);}
( LOOKAHEAD(2) <COMMA> expr = ArrayVariable()
- {buff.append(",").append(expr);}
+ {list.add(expr);}
)*
]
- [<COMMA> {buff.append(",");}]
+ [<COMMA> {list.add(null);}]
<RPAREN>
{
- buff.append(")");
- return buff.toString();
- }
+ final ArrayVariableDeclaration[] vars = new ArrayVariableDeclaration[list.size()];
+ list.toArray(vars);
+ return vars;}
}
/**
* A Method Declaration.
* <b>function</b> MetodDeclarator() Block()
*/
-void MethodDeclaration() :
+MethodDeclaration MethodDeclaration() :
{
- final PHPFunctionDeclaration functionDeclaration;
- Token functionToken;
+ final MethodDeclaration functionDeclaration;
+ final Block block;
+ final OutlineableWithChildren seg = currentSegment;
}
{
- functionToken = <FUNCTION>
+ <FUNCTION>
try {
functionDeclaration = MethodDeclarator()
+ {outlineInfo.addVariable(new String(functionDeclaration.name));}
} catch (ParseException e) {
- if (errorMessage != null) {
- throw e;
- }
+ if (errorMessage != null) 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
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 = functionDeclaration;}
+ block = Block()
+ {functionDeclaration.statements = block.statements;
+ currentSegment = seg;
+ return functionDeclaration;}
}
/**
* [&] IDENTIFIER(parameters ...).
* @return a function description for the outline
*/
-PHPFunctionDeclaration MethodDeclarator() :
+MethodDeclaration MethodDeclarator() :
{
final Token identifier;
- final StringBuffer methodDeclaration = new StringBuffer();
+ Token reference = null;
final Hashtable formalParameters;
- final int pos = jj_input_stream.getPosition();
+ final int pos = SimpleCharStream.getPosition();
+ char[] identifierChar = SYNTAX_ERROR_CHAR;
}
{
- [ <BIT_AND> {methodDeclaration.append("&");} ]
- identifier = <IDENTIFIER>
- formalParameters = FormalParameters()
- {
- methodDeclaration.append(identifier);
- return new PHPFunctionDeclaration(currentSegment,methodDeclaration.toString(),pos,formalParameters);
+ [reference = <BIT_AND>]
+ try {
+ identifier = <IDENTIFIER>
+ {identifierChar = identifier.image.toCharArray();}
+ } 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);
}
+ formalParameters = FormalParameters()
+ {return new MethodDeclaration(currentSegment,
+ identifierChar,
+ formalParameters,
+ reference != null,
+ pos,
+ SimpleCharStream.getPosition());}
}
/**
*/
Hashtable FormalParameters() :
{
- String expr;
- final StringBuffer buff = new StringBuffer("(");
- PHPVarDeclaration var;
+ VariableDeclaration var;
final Hashtable parameters = new Hashtable();
}
{
} 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;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
[ var = FormalParameter()
- {parameters.put(var.getVariable().getName(),var);}
+ {parameters.put(new String(var.name),var);}
(
<COMMA> var = FormalParameter()
- {parameters.put(var.getVariable().getName(),var);}
+ {parameters.put(new String(var.name),var);}
)*
]
try {
} catch (ParseException e) {
errorMessage = "')' expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
{return parameters;}
}
* A formal parameter.
* $varname[=value] (,$varname[=value])
*/
-PHPVarDeclaration FormalParameter() :
+VariableDeclaration FormalParameter() :
{
- final PHPVarDeclaration variableDeclaration;
+ final VariableDeclaration variableDeclaration;
Token token = null;
}
{
[token = <BIT_AND>] variableDeclaration = VariableDeclarator()
{
if (token != null) {
- variableDeclaration.getVariable().setReference(true);
+ variableDeclaration.setReference(true);
}
- return variableDeclaration;
- }
+ return variableDeclaration;}
+}
+
+ConstantIdentifier Type() :
+{final int pos;}
+{
+ <STRING> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.STRING,pos,pos-6);}
+| <BOOL> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.BOOL,pos,pos-4);}
+| <BOOLEAN> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.BOOLEAN,pos,pos-7);}
+| <REAL> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.REAL,pos,pos-4);}
+| <DOUBLE> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.DOUBLE,pos,pos-5);}
+| <FLOAT> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.FLOAT,pos,pos-5);}
+| <INT> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.INT,pos,pos-3);}
+| <INTEGER> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.INTEGER,pos,pos-7);}
+| <OBJECT> {pos = SimpleCharStream.getPosition();
+ return new ConstantIdentifier(Types.OBJECT,pos,pos-6);}
+}
+
+Expression Expression() :
+{
+ final Expression expr;
+ final int pos = SimpleCharStream.getPosition();
}
-
-String Type() :
-{}
{
- <STRING>
- {return "string";}
-|
- <BOOL>
- {return "bool";}
-|
- <BOOLEAN>
- {return "boolean";}
-|
- <REAL>
- {return "real";}
-|
- <DOUBLE>
- {return "double";}
-|
- <FLOAT>
- {return "float";}
-|
- <INT>
- {return "int";}
-|
- <INTEGER>
- {return "integer";}
-|
- <OBJECT>
- {return "object";}
+ <BANG> expr = Expression() {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,pos);}
+| expr = ExpressionNoBang() {return expr;}
}
-String Expression() :
+Expression ExpressionNoBang() :
{
- final String expr;
- final String assignOperator;
- final String expr2;
+ final Expression expr;
}
{
- expr = PrintExpression()
- {return expr;}
-|
- expr = ListExpression()
- {return expr;}
-|
- LOOKAHEAD(varAssignation())
- expr = varAssignation()
- {return expr;}
-|
- expr = ConditionalExpression()
- {return expr;}
+ expr = PrintExpression() {return expr;}
+| expr = ListExpression() {return expr;}
+| LOOKAHEAD(varAssignation())
+ expr = varAssignation() {return expr;}
+| expr = ConditionalExpression() {return expr;}
}
/**
* A Variable assignation.
* varName (an assign operator) any expression
*/
-String varAssignation() :
+VarAssignation varAssignation() :
{
- String varName,assignOperator,expr2;
- PHPVarDeclaration variable;
+ final String varName;
+ final Expression initializer;
+ final int assignOperator;
final int pos = SimpleCharStream.getPosition();
}
{
varName = VariableDeclaratorId()
assignOperator = AssignmentOperator()
try {
- expr2 = Expression()
+ initializer = Expression()
} catch (ParseException e) {
if (errorMessage != null) {
throw e;
}
errorMessage = "expression expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {return varName + assignOperator + expr2;}
+ {return new VarAssignation(varName.toCharArray(),
+ initializer,
+ assignOperator,
+ pos,
+ SimpleCharStream.getPosition());}
}
-String AssignmentOperator() :
+int AssignmentOperator() :
{}
{
- <ASSIGN>
-{return "=";}
-| <STARASSIGN>
-{return "*=";}
-| <SLASHASSIGN>
-{return "/=";}
-| <REMASSIGN>
-{return "%=";}
-| <PLUSASSIGN>
-{return "+=";}
-| <MINUSASSIGN>
-{return "-=";}
-| <LSHIFTASSIGN>
-{return "<<=";}
-| <RSIGNEDSHIFTASSIGN>
-{return ">>=";}
-| <ANDASSIGN>
-{return "&=";}
-| <XORASSIGN>
-{return "|=";}
-| <ORASSIGN>
-{return "|=";}
-| <DOTASSIGN>
-{return ".=";}
-| <TILDEEQUAL>
-{return "~=";}
-}
-
-String ConditionalExpression() :
+ <ASSIGN> {return VarAssignation.EQUAL;}
+| <STARASSIGN> {return VarAssignation.STAR_EQUAL;}
+| <SLASHASSIGN> {return VarAssignation.SLASH_EQUAL;}
+| <REMASSIGN> {return VarAssignation.REM_EQUAL;}
+| <PLUSASSIGN> {return VarAssignation.PLUS_EQUAL;}
+| <MINUSASSIGN> {return VarAssignation.MINUS_EQUAL;}
+| <LSHIFTASSIGN> {return VarAssignation.LSHIFT_EQUAL;}
+| <RSIGNEDSHIFTASSIGN> {return VarAssignation.RSIGNEDSHIFT_EQUAL;}
+| <ANDASSIGN> {return VarAssignation.AND_EQUAL;}
+| <XORASSIGN> {return VarAssignation.XOR_EQUAL;}
+| <ORASSIGN> {return VarAssignation.OR_EQUAL;}
+| <DOTASSIGN> {return VarAssignation.DOT_EQUAL;}
+| <TILDEEQUAL> {return VarAssignation.TILDE_EQUAL;}
+}
+
+Expression ConditionalExpression() :
{
- final String expr;
- String expr2 = null;
- String expr3 = null;
+ final Expression expr;
+ Expression expr2 = null;
+ Expression expr3 = null;
}
{
expr = ConditionalOrExpression() [ <HOOK> expr2 = Expression() <COLON> expr3 = ConditionalExpression() ]
{
if (expr3 == null) {
return expr;
- } else {
- return expr + "?" + expr2 + ":" + expr3;
}
+ return new ConditionalExpression(expr,expr2,expr3);
}
}
-String ConditionalOrExpression() :
+Expression ConditionalOrExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = ConditionalAndExpression()
- {buff.append(expr);}
(
- (operator = <SC_OR> | operator = <_ORL>) expr = ConditionalAndExpression()
+ (
+ <OR_OR> {operator = OperatorIds.OR_OR;}
+ | <_ORL> {operator = OperatorIds.ORL;}
+ ) expr2 = ConditionalAndExpression()
{
- buff.append(operator.image);
- buff.append(expr);
+ expr = new BinaryExpression(expr,expr2,operator);
}
)*
- {
- return buff.toString();
- }
+ {return expr;}
}
-String ConditionalAndExpression() :
+Expression ConditionalAndExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = ConcatExpression()
- {buff.append(expr);}
(
- (operator = <SC_AND> | operator = <_ANDL>) expr = ConcatExpression()
- {
- buff.append(operator.image);
- buff.append(expr);
- }
+ ( <AND_AND> {operator = OperatorIds.AND_AND;}
+ | <_ANDL> {operator = OperatorIds.ANDL;})
+ expr2 = ConcatExpression() {expr = new BinaryExpression(expr,expr2,operator);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String ConcatExpression() :
+Expression ConcatExpression() :
{
- String expr;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
}
{
expr = InclusiveOrExpression()
- {buff.append(expr);}
(
- <DOT> expr = InclusiveOrExpression()
- {buff.append(".").append(expr);}
+ <DOT> expr2 = InclusiveOrExpression()
+ {expr = new BinaryExpression(expr,expr2,OperatorIds.DOT);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String InclusiveOrExpression() :
+Expression InclusiveOrExpression() :
{
- String expr;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
}
{
expr = ExclusiveOrExpression()
- {buff.append(expr);}
- (
- <BIT_OR> expr = ExclusiveOrExpression()
- {buff.append("|").append(expr);}
+ (<BIT_OR> expr2 = ExclusiveOrExpression()
+ {expr = new BinaryExpression(expr,expr2,OperatorIds.OR);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String ExclusiveOrExpression() :
+Expression ExclusiveOrExpression() :
{
- String expr;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
}
{
expr = AndExpression()
- {
- buff.append(expr);
- }
(
- <XOR> expr = AndExpression()
- {
- buff.append("^");
- buff.append(expr);
- }
+ <XOR> expr2 = AndExpression()
+ {expr = new BinaryExpression(expr,expr2,OperatorIds.XOR);}
)*
- {
- return buff.toString();
- }
+ {return expr;}
}
-String AndExpression() :
+Expression AndExpression() :
{
- String expr;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
}
{
expr = EqualityExpression()
- {
- buff.append(expr);
- }
(
- <BIT_AND> expr = EqualityExpression()
- {
- buff.append("&").append(expr);
- }
+ <BIT_AND> expr2 = EqualityExpression()
+ {expr = new BinaryExpression(expr,expr2,OperatorIds.AND);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String EqualityExpression() :
+Expression EqualityExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = RelationalExpression()
- {buff.append(expr);}
(
- ( operator = <EQ>
- | operator = <DIF>
- | operator = <NE>
- | operator = <BANGDOUBLEEQUAL>
- | operator = <TRIPLEEQUAL>
+ ( <EQUAL_EQUAL> {operator = OperatorIds.EQUAL_EQUAL;}
+ | <DIF> {operator = OperatorIds.DIF;}
+ | <NOT_EQUAL> {operator = OperatorIds.DIF;}
+ | <BANGDOUBLEEQUAL> {operator = OperatorIds.BANG_EQUAL_EQUAL;}
+ | <TRIPLEEQUAL> {operator = OperatorIds.EQUAL_EQUAL_EQUAL;}
)
try {
- expr = RelationalExpression()
+ expr2 = RelationalExpression()
} catch (ParseException e) {
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected after '"+operator.image+"'";
+ if (errorMessage != null) {
+ throw e;
+ }
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
{
- buff.append(operator.image);
- buff.append(expr);
+ expr = new BinaryExpression(expr,expr2,operator);
}
)*
- {return buff.toString();}
+ {return expr;}
}
-String RelationalExpression() :
+Expression RelationalExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = ShiftExpression()
- {buff.append(expr);}
(
- ( operator = <LT> | operator = <GT> | operator = <LE> | operator = <GE> ) expr = ShiftExpression()
- {buff.append(operator.image).append(expr);}
+ ( <LT> {operator = OperatorIds.LESS;}
+ | <GT> {operator = OperatorIds.GREATER;}
+ | <LE> {operator = OperatorIds.LESS_EQUAL;}
+ | <GE> {operator = OperatorIds.GREATER_EQUAL;})
+ expr2 = ShiftExpression()
+ {expr = new BinaryExpression(expr,expr2,operator);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String ShiftExpression() :
+Expression ShiftExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = AdditiveExpression()
- {buff.append(expr);}
(
- (operator = <LSHIFT> | operator = <RSIGNEDSHIFT> | operator = <RUNSIGNEDSHIFT> ) expr = AdditiveExpression()
- {
- buff.append(operator.image);
- buff.append(expr);
- }
+ ( <LSHIFT> {operator = OperatorIds.LEFT_SHIFT;}
+ | <RSIGNEDSHIFT> {operator = OperatorIds.RIGHT_SHIFT;}
+ | <RUNSIGNEDSHIFT> {operator = OperatorIds.UNSIGNED_RIGHT_SHIFT;})
+ expr2 = AdditiveExpression()
+ {expr = new BinaryExpression(expr,expr2,operator);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String AdditiveExpression() :
+Expression AdditiveExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();
+ Expression expr,expr2;
+ int operator;
}
{
expr = MultiplicativeExpression()
- {buff.append(expr);}
(
- ( operator = <PLUS> | operator = <MINUS> ) expr = MultiplicativeExpression()
- {
- buff.append(operator.image);
- buff.append(expr);
- }
+ ( <PLUS> {operator = OperatorIds.PLUS;}
+ | <MINUS> {operator = OperatorIds.MINUS;} )
+ expr2 = MultiplicativeExpression()
+ {expr = new BinaryExpression(expr,expr2,operator);}
)*
- {return buff.toString();}
+ {return expr;}
}
-String MultiplicativeExpression() :
+Expression MultiplicativeExpression() :
{
- String expr;
- Token operator;
- final StringBuffer buff = new StringBuffer();}
+ Expression expr,expr2;
+ int operator;
+}
{
try {
expr = UnaryExpression()
} catch (ParseException e) {
+ if (errorMessage != null) throw 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {buff.append(expr);}
(
- ( operator = <STAR> | operator = <SLASH> | operator = <REM> ) expr = UnaryExpression()
- {
- buff.append(operator.image);
- buff.append(expr);
- }
+ ( <STAR> {operator = OperatorIds.MULTIPLY;}
+ | <SLASH> {operator = OperatorIds.DIVIDE;}
+ | <REMAINDER> {operator = OperatorIds.REMAINDER;})
+ expr2 = UnaryExpression()
+ {expr = new BinaryExpression(expr,expr2,operator);}
)*
- {return buff.toString();}
+ {return expr;}
}
/**
* An unary expression starting with @, & or nothing
*/
-String UnaryExpression() :
+Expression UnaryExpression() :
{
- final String expr;
- final Token token;
- final StringBuffer buff = new StringBuffer();
+ final Expression expr;
+ final int pos = SimpleCharStream.getPosition();
}
{
- token = <BIT_AND> expr = UnaryExpressionNoPrefix()
- {
- if (token == null) {
- return expr;
- }
- return token.image + expr;
- }
+ <BIT_AND> expr = UnaryExpressionNoPrefix()
+ {return new PrefixedUnaryExpression(expr,OperatorIds.AND,pos);}
|
- (<AT> {buff.append("@");})* expr = UnaryExpressionNoPrefix()
- {return buff.append(expr).toString();}
+ expr = AtUnaryExpression() {return expr;}
}
-String UnaryExpressionNoPrefix() :
+Expression AtUnaryExpression() :
{
- final String expr;
- final Token token;
+ final Expression expr;
+ final int pos = SimpleCharStream.getPosition();
}
{
- ( token = <PLUS> | token = <MINUS> ) expr = UnaryExpression()
- {
- return token.image + expr;
- }
+ <AT>
+ expr = AtUnaryExpression()
+ {return new PrefixedUnaryExpression(expr,OperatorIds.AT,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);}
|
expr = PreIncDecExpression()
{return expr;}
}
-String PreIncDecExpression() :
+Expression PreIncDecExpression() :
{
-final String expr;
-final Token token;
+final Expression expr;
+final int operator;
+ final int pos = SimpleCharStream.getPosition();
}
{
- (token = <INCR> | token = <DECR>) expr = PrimaryExpression()
- {return token.image + expr;}
+ ( <PLUS_PLUS> {operator = OperatorIds.PLUS_PLUS;}
+ | <MINUS_MINUS> {operator = OperatorIds.MINUS_MINUS;})
+ expr = PrimaryExpression()
+ {return new PrefixedUnaryExpression(expr,operator,pos);}
}
-String UnaryExpressionNotPlusMinus() :
+Expression UnaryExpressionNotPlusMinus() :
{
- final String expr;
+ final Expression expr;
}
{
- <BANG> expr = UnaryExpression()
- {return "!" + expr;}
-|
+// <BANG> expr = UnaryExpression() {return new PrefixedUnaryExpression(expr,OperatorIds.NOT,pos);}
LOOKAHEAD( <LPAREN> (Type() | <ARRAY>) <RPAREN> )
- expr = CastExpression()
- {return expr;}
-|
- expr = PostfixExpression()
- {return expr;}
-|
- expr = Literal()
- {return expr;}
-|
- <LPAREN> expr = Expression()
+ expr = CastExpression() {return expr;}
+| expr = PostfixExpression() {return expr;}
+| expr = Literal() {return expr;}
+| <LPAREN> expr = Expression()
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {return "("+expr+")";}
+ {return expr;}
}
-String CastExpression() :
+CastExpression CastExpression() :
{
-final String type, expr;
+final ConstantIdentifier type;
+final Expression expr;
+final int pos = SimpleCharStream.getPosition();
}
{
- <LPAREN> (type = Type() | <ARRAY> {type = "array";}) <RPAREN> expr = UnaryExpression()
- {return "(" + type + ")" + expr;}
+ <LPAREN>
+ (type = Type()
+ | <ARRAY> {type = new ConstantIdentifier(Types.ARRAY,pos,SimpleCharStream.getPosition());})
+ <RPAREN> expr = UnaryExpression()
+ {return new CastExpression(type,expr,pos,SimpleCharStream.getPosition());}
}
-String PostfixExpression() :
+Expression PostfixExpression() :
{
- final String expr;
- Token operator = null;
+ final Expression expr;
+ int operator = -1;
+ final int pos = SimpleCharStream.getPosition();
}
{
- expr = PrimaryExpression() [ operator = <INCR> | operator = <DECR> ]
+ expr = PrimaryExpression()
+ [ <PLUS_PLUS> {operator = OperatorIds.PLUS_PLUS;}
+ | <MINUS_MINUS> {operator = OperatorIds.MINUS_MINUS;}]
{
- if (operator == null) {
+ if (operator == -1) {
return expr;
}
- return expr + operator.image;
+ return new PostfixedUnaryExpression(expr,operator,pos);
}
}
-String PrimaryExpression() :
+Expression PrimaryExpression() :
{
final Token identifier;
- String expr;
- final StringBuffer buff = new StringBuffer();
+ Expression expr;
+ final int pos = SimpleCharStream.getPosition();
}
{
LOOKAHEAD(2)
identifier = <IDENTIFIER> <STATICCLASSACCESS> expr = ClassIdentifier()
- {buff.append(identifier.image).append("::").append(expr);}
+ {expr = new ClassAccess(new ConstantIdentifier(identifier.image.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition()),
+ expr,
+ ClassAccess.STATIC);}
(
- expr = PrimarySuffix()
- {buff.append(expr);}
- )*
- {return buff.toString();}
+ LOOKAHEAD(PrimarySuffix())
+ expr = PrimarySuffix(expr))*
+ {return expr;}
|
- expr = PrimaryPrefix() {buff.append(expr);}
- ( expr = PrimarySuffix() {buff.append(expr);} )*
- {return buff.toString();}
+ expr = PrimaryPrefix()
+ (
+ LOOKAHEAD(PrimarySuffix())
+ expr = PrimarySuffix(expr))*
+ {return expr;}
|
expr = ArrayDeclarator()
- {return "array" + expr;}
+ {return expr;}
}
-String ArrayDeclarator() :
+/**
+ * An array declarator.
+ * array(vars)
+ * @return an array
+ */
+ArrayInitializer ArrayDeclarator() :
{
- final String expr;
+ final ArrayVariableDeclaration[] vars;
+ final int pos = SimpleCharStream.getPosition();
}
{
- <ARRAY> expr = ArrayInitializer()
- {return "array" + expr;}
+ <ARRAY> vars = ArrayInitializer()
+ {return new ArrayInitializer(vars,pos,SimpleCharStream.getPosition());}
}
-String PrimaryPrefix() :
+Expression PrimaryPrefix() :
{
- final String expr;
+ final Expression expr;
final Token token;
+ final String var;
+ final int pos = SimpleCharStream.getPosition();
}
{
- token = <IDENTIFIER>
- {return token.image;}
-|
- <NEW> expr = ClassIdentifier()
- {
- return "new " + expr;
- }
-|
- expr = VariableDeclaratorId()
- {return expr;}
+ token = <IDENTIFIER> {return new ConstantIdentifier(token.image.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
+| <NEW> expr = ClassIdentifier() {return new PrefixedUnaryExpression(expr,
+ OperatorIds.NEW,
+ pos);}
+| var = VariableDeclaratorId() {return new VariableDeclaration(currentSegment,
+ var.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
}
-String classInstantiation() :
+PrefixedUnaryExpression classInstantiation() :
{
- String expr;
- final StringBuffer buff = new StringBuffer("new ");
+ Expression expr;
+ final StringBuffer buff;
+ final int pos = SimpleCharStream.getPosition();
}
{
<NEW> expr = ClassIdentifier()
- {buff.append(expr);}
[
+ {buff = new StringBuffer(expr.toStringExpression());}
expr = PrimaryExpression()
- {buff.append(expr);}
+ {buff.append(expr.toStringExpression());
+ expr = new ConstantIdentifier(buff.toString().toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
]
- {return buff.toString();}
+ {return new PrefixedUnaryExpression(expr,
+ OperatorIds.NEW,
+ pos);}
}
-String ClassIdentifier():
+ConstantIdentifier ClassIdentifier():
{
final String expr;
final Token token;
+ final int pos = SimpleCharStream.getPosition();
}
{
- token = <IDENTIFIER>
- {return token.image;}
-|
- expr = VariableDeclaratorId()
- {return expr;}
+ token = <IDENTIFIER> {return new ConstantIdentifier(token.image.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
+| expr = VariableDeclaratorId() {return new ConstantIdentifier(expr.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());}
}
-String PrimarySuffix() :
+AbstractSuffixExpression PrimarySuffix(final Expression prefix) :
{
- final String expr;
+ final AbstractSuffixExpression expr;
}
{
- expr = Arguments()
- {return expr;}
-|
- expr = VariableSuffix()
- {return expr;}
+ expr = Arguments(prefix) {return expr;}
+| expr = VariableSuffix(prefix) {return expr;}
}
-String VariableSuffix() :
+AbstractSuffixExpression VariableSuffix(final Expression prefix) :
{
String expr = null;
+ final int pos = SimpleCharStream.getPosition();
+ Expression expression = null;
}
{
<CLASSACCESS>
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {return "->" + expr;}
+ {return new ClassAccess(prefix,
+ new ConstantIdentifier(expr.toCharArray(),pos,SimpleCharStream.getPosition()),
+ ClassAccess.NORMAL);}
|
- <LBRACKET> [ expr = Expression() | expr = Type() ] //Not good
+ <LBRACKET> [ expression = Expression() | expression = Type() ] //Not good
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {
- if(expr == null) {
- return "[]";
- }
- return "[" + expr + "]";
- }
+ {return new ArrayDeclarator(prefix,expression,SimpleCharStream.getPosition());}
}
-String Literal() :
+Literal Literal() :
{
- final String expr;
final Token token;
+ final int pos;
}
{
- token = <INTEGER_LITERAL>
- {return token.image;}
-|
- token = <FLOATING_POINT_LITERAL>
- {return token.image;}
-|
- token = <STRING_LITERAL>
- {return token.image;}
-|
- expr = BooleanLiteral()
- {return expr;}
-|
- <NULL>
- {return "null";}
+ token = <INTEGER_LITERAL> {pos = SimpleCharStream.getPosition();
+ return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);}
+| token = <FLOATING_POINT_LITERAL> {pos = SimpleCharStream.getPosition();
+ return new NumberLiteral(token.image.toCharArray(),pos-token.image.length(),pos);}
+| token = <STRING_LITERAL> {pos = SimpleCharStream.getPosition();
+ return new StringLiteral(token.image.toCharArray(),pos-token.image.length());}
+| <TRUE> {pos = SimpleCharStream.getPosition();
+ return new TrueLiteral(pos-4,pos);}
+| <FALSE> {pos = SimpleCharStream.getPosition();
+ return new FalseLiteral(pos-4,pos);}
+| <NULL> {pos = SimpleCharStream.getPosition();
+ return new NullLiteral(pos-4,pos);}
}
-String BooleanLiteral() :
-{}
+FunctionCall Arguments(final Expression func) :
{
- <TRUE>
- {return "true";}
-|
- <FALSE>
- {return "false";}
+Expression[] args = null;
}
-
-String Arguments() :
{
-String expr = null;
-}
-{
- <LPAREN> [ expr = ArgumentList() ]
+ <LPAREN> [ args = ArgumentList() ]
try {
<RPAREN>
} catch (ParseException e) {
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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {
- if (expr == null) {
- return "()";
- }
- return "(" + expr + ")";
- }
+ {return new FunctionCall(func,args,SimpleCharStream.getPosition());}
}
-String ArgumentList() :
+/**
+ * An argument list is a list of arguments separated by comma :
+ * argumentDeclaration() (, argumentDeclaration)*
+ * @return an array of arguments
+ */
+Expression[] ArgumentList() :
{
-String expr;
-final StringBuffer buff = new StringBuffer();
+Expression arg;
+final ArrayList list = new ArrayList();
}
{
- expr = Expression()
- {buff.append(expr);}
+ arg = Expression()
+ {list.add(arg);}
( <COMMA>
try {
- expr = Expression()
+ arg = Expression()
+ {list.add(arg);}
} catch (ParseException e) {
- errorMessage = "expression expected after a comma in argument list";
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. An 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {
- buff.append(",").append(expr);
- }
)*
- {return buff.toString();}
+ {
+ final Expression[] arguments = new Expression[list.size()];
+ list.toArray(arguments);
+ return arguments;}
}
/**
- * A Statement without break
+ * A Statement without break.
*/
-void StatementNoBreak() :
-{}
+Statement StatementNoBreak() :
+{
+ final Statement statement;
+ Token token = null;
+}
{
LOOKAHEAD(2)
- Expression()
+ statement = Expression()
try {
<SEMICOLON>
} catch (ParseException e) {
- if (e.currentToken.next.kind != 4) {
+ if (e.currentToken.next.kind != PHPParserConstants.PHPEND) {
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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-|
- LOOKAHEAD(2)
- LabeledStatement()
-|
- Block()
-|
- EmptyStatement()
-|
- StatementExpression()
+ {return statement;}
+| LOOKAHEAD(2)
+ 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 = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
-|
- SwitchStatement()
-|
- IfStatement()
-|
- WhileStatement()
-|
- DoStatement()
-|
- ForStatement()
-|
- ForeachStatement()
-|
- ContinueStatement()
-|
- ReturnStatement()
-|
- EchoStatement()
-|
- [<AT>] IncludeStatement()
-|
- StaticStatement()
-|
- GlobalStatement()
+ {return statement;}
+| statement = SwitchStatement() {return statement;}
+| statement = IfStatement() {return statement;}
+| statement = WhileStatement() {return statement;}
+| statement = DoStatement() {return statement;}
+| statement = ForStatement() {return statement;}
+| statement = ForeachStatement() {return statement;}
+| statement = ContinueStatement() {return statement;}
+| statement = ReturnStatement() {return statement;}
+| statement = EchoStatement() {return statement;}
+| [token=<AT>] statement = IncludeStatement()
+ {if (token != null) {
+ ((InclusionStatement)statement).silent = true;
+ }
+ return statement;}
+| statement = StaticStatement() {return statement;}
+| statement = GlobalStatement() {return statement;}
+| statement = defineStatement() {currentSegment.add((Outlineable)statement);return statement;}
+}
+
+Define defineStatement() :
+{
+ final int start = SimpleCharStream.getPosition();
+ Expression defineName,defineValue;
+}
+{
+ <DEFINE>
+ try {
+ <LPAREN>
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', '(' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ try {
+ defineName = Expression()
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+ try {
+ <COMMA>
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ',' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ try {
+ ( defineValue = PrintExpression()
+ | LOOKAHEAD(varAssignation())
+ defineValue = varAssignation()
+ | defineValue = ConditionalExpression())
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+ try {
+ <RPAREN>
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', ')' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
+ }
+ {return new Define(currentSegment,
+ defineName,
+ defineValue,
+ start,
+ SimpleCharStream.getPosition());}
}
/**
- * A Normal statement
+ * A Normal statement.
*/
-void Statement() :
-{}
+Statement Statement() :
{
- StatementNoBreak()
-|
- BreakStatement()
+ final Statement statement;
+}
+{
+ statement = StatementNoBreak() {return statement;}
+| statement = BreakStatement() {return statement;}
}
-void htmlBlock() :
-{}
+/**
+ * An html block inside a php syntax.
+ */
+HTMLBlock htmlBlock() :
{
- <PHPEND> (phpEchoBlock())* (<PHPSTARTLONG> | <PHPSTARTSHORT>)
+ final int startIndex = nodePtr;
+ final AstNode[] blockNodes;
+ final int nbNodes;
+}
+{
+ <PHPEND> (phpEchoBlock())*
+ try {
+ (<PHPSTARTLONG> | <PHPSTARTSHORT>)
+ } catch (ParseException e) {
+ errorMessage = "unexpected end of file , '<?php' expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition();
+ errorEnd = SimpleCharStream.getPosition();
+ throw e;
+ }
+ {
+ nbNodes = nodePtr - startIndex;
+ blockNodes = new AstNode[nbNodes];
+ System.arraycopy(nodes,startIndex,blockNodes,0,nbNodes);
+ nodePtr = startIndex;
+ return new HTMLBlock(blockNodes);}
}
/**
* An include statement. It's "include" an expression;
*/
-void IncludeStatement() :
+InclusionStatement IncludeStatement() :
{
- final String expr;
- final Token token;
- final int pos = jj_input_stream.getPosition();
+ final Expression expr;
+ final int keyword;
+ final int pos = SimpleCharStream.getPosition();
+ final InclusionStatement inclusionStatement;
}
{
- ( token = <REQUIRE>
- | token = <REQUIRE_ONCE>
- | token = <INCLUDE>
- | token = <INCLUDE_ONCE> )
- expr = Expression()
- {
- if (currentSegment != null) {
- currentSegment.add(new PHPReqIncDeclaration(currentSegment, token.image,pos,expr));
+ ( <REQUIRE> {keyword = InclusionStatement.REQUIRE;}
+ | <REQUIRE_ONCE> {keyword = InclusionStatement.REQUIRE_ONCE;}
+ | <INCLUDE> {keyword = InclusionStatement.INCLUDE;}
+ | <INCLUDE_ONCE> {keyword = InclusionStatement.INCLUDE_ONCE;})
+ try {
+ expr = Expression()
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ throw e;
}
+ errorMessage = "unexpected token '"+ e.currentToken.next.image+"', expression expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+ {inclusionStatement = new InclusionStatement(currentSegment,
+ keyword,
+ expr,
+ pos);
+ currentSegment.add(inclusionStatement);
}
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
+ {return inclusionStatement;}
}
-String PrintExpression() :
+PrintExpression PrintExpression() :
{
- final StringBuffer buff = new StringBuffer("print ");
- final String expr;
+ final Expression expr;
+ final int pos = SimpleCharStream.getPosition();
}
{
- <PRINT> expr = Expression()
- {
- buff.append(expr);
- return buff.toString();
- }
+ <PRINT> expr = Expression() {return new PrintExpression(expr,pos,SimpleCharStream.getPosition());}
}
-String ListExpression() :
+ListExpression ListExpression() :
{
- final StringBuffer buff = new StringBuffer("list(");
- String expr;
+ String expr = null;
+ final Expression expression;
+ final ArrayList list = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
}
{
<LIST>
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
[
expr = VariableDeclaratorId()
- {buff.append(expr);}
+ {list.add(expr);}
]
+ {if (expr == null) list.add(null);}
(
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- expr = VariableDeclaratorId()
- {buff.append(",").append(expr);}
+ [expr = VariableDeclaratorId() {list.add(expr);}]
)*
- {buff.append(")");}
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- [ <ASSIGN> expr = Expression() {buff.append("(").append(expr);}]
- {return buff.toString();}
+ [ <ASSIGN> expression = Expression()
+ {
+ final String[] strings = new String[list.size()];
+ list.toArray(strings);
+ return new ListExpression(strings,
+ expression,
+ pos,
+ SimpleCharStream.getPosition());}
+ ]
+ {
+ final String[] strings = new String[list.size()];
+ list.toArray(strings);
+ return new ListExpression(strings,pos,SimpleCharStream.getPosition());}
}
/**
- * An echo statement is like this : echo anyexpression (, otherexpression)*
+ * An echo statement.
+ * echo anyexpression (, otherexpression)*
*/
-void EchoStatement() :
-{}
+EchoStatement EchoStatement() :
+{
+ final ArrayList expressions = new ArrayList();
+ Expression expr;
+ final int pos = SimpleCharStream.getPosition();
+}
{
- <ECHO> Expression() (<COMMA> Expression())*
+ <ECHO> expr = Expression()
+ {expressions.add(expr);}
+ (
+ <COMMA> expr = Expression()
+ {expressions.add(expr);}
+ )*
try {
<SEMICOLON>
} catch (ParseException 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
+ {final Expression[] exprs = new Expression[expressions.size()];
+ expressions.toArray(exprs);
+ return new EchoStatement(exprs,pos);}
}
-void GlobalStatement() :
+GlobalStatement GlobalStatement() :
{
- final int pos = jj_input_stream.getPosition();
+ final int pos = SimpleCharStream.getPosition();
String expr;
+ final ArrayList vars = new ArrayList();
+ final GlobalStatement global;
}
{
<GLOBAL>
expr = VariableDeclaratorId()
- {if (currentSegment != null) {
- currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr));
- }}
+ {vars.add(expr);}
(<COMMA>
expr = VariableDeclaratorId()
- {if (currentSegment != null) {
- currentSegment.add(new PHPGlobalDeclaration(currentSegment, "global",pos,expr));
- }}
+ {vars.add(expr);}
)*
try {
<SEMICOLON>
+ {
+ final String[] strings = new String[vars.size()];
+ vars.toArray(strings);
+ global = new GlobalStatement(currentSegment,
+ strings,
+ pos,
+ SimpleCharStream.getPosition());
+ currentSegment.add(global);
+ return global;}
} catch (ParseException e) {
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-void StaticStatement() :
-{}
+StaticStatement StaticStatement() :
+{
+ final int pos = SimpleCharStream.getPosition();
+ final ArrayList vars = new ArrayList();
+ VariableDeclaration expr;
+}
{
- <STATIC> VariableDeclarator() (<COMMA> VariableDeclarator())*
+ <STATIC> expr = VariableDeclarator() {vars.add(new String(expr.name));}
+ (<COMMA> expr = VariableDeclarator() {vars.add(new String(expr.name));})*
try {
<SEMICOLON>
+ {
+ final String[] strings = new String[vars.size()];
+ vars.toArray(strings);
+ return new StaticStatement(strings,
+ pos,
+ SimpleCharStream.getPosition());}
} catch (ParseException e) {
- errorMessage = "unexpected token : '"+ e.currentToken.next.image +"'. A ';' was expected";
+ 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-void LabeledStatement() :
-{}
+LabeledStatement LabeledStatement() :
{
- <IDENTIFIER> <COLON> Statement()
+ final int pos = SimpleCharStream.getPosition();
+ final Token label;
+ final Statement statement;
+}
+{
+ label = <IDENTIFIER> <COLON> statement = Statement()
+ {return new LabeledStatement(label.image.toCharArray(),statement,pos,SimpleCharStream.getPosition());}
}
-void Block() :
-{}
+/**
+ * A Block is
+ * {
+ * statements
+ * }.
+ * @return a block
+ */
+Block Block() :
+{
+ final int pos = SimpleCharStream.getPosition();
+ final ArrayList list = new ArrayList();
+ Statement statement;
+}
{
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- ( BlockStatement() | htmlBlock())*
+ ( statement = BlockStatement() {list.add(statement);}
+ | statement = htmlBlock() {list.add(statement);})*
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
+ {
+ final Statement[] statements = new Statement[list.size()];
+ list.toArray(statements);
+ return new Block(statements,pos,SimpleCharStream.getPosition());}
}
-void BlockStatement() :
-{}
+Statement BlockStatement() :
{
- Statement()
-|
- ClassDeclaration()
-|
- MethodDeclaration()
+ final Statement statement;
+}
+{
+ try {
+ statement = Statement() {if (phpDocument == currentSegment) pushOnAstNodes(statement);
+ return statement;}
+ } catch (ParseException e) {
+ if (errorMessage != null) throw e;
+ errorMessage = "statement expected";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+| statement = ClassDeclaration() {return statement;}
+| statement = MethodDeclaration() {if (phpDocument == currentSegment) pushOnAstNodes(statement);
+ currentSegment.add((MethodDeclaration) statement);
+ return statement;}
}
/**
* A Block statement that will not contain any 'break'
*/
-void BlockStatementNoBreak() :
-{}
+Statement BlockStatementNoBreak() :
{
- StatementNoBreak()
-|
- ClassDeclaration()
-|
- MethodDeclaration()
+ final Statement statement;
+}
+{
+ statement = StatementNoBreak() {return statement;}
+| statement = ClassDeclaration() {return statement;}
+| statement = MethodDeclaration() {currentSegment.add((MethodDeclaration) statement);
+ return statement;}
}
-void LocalVariableDeclaration() :
-{}
+VariableDeclaration[] LocalVariableDeclaration() :
{
- LocalVariableDeclarator() ( <COMMA> LocalVariableDeclarator() )*
+ final ArrayList list = new ArrayList();
+ VariableDeclaration var;
+}
+{
+ var = LocalVariableDeclarator()
+ {list.add(var);}
+ ( <COMMA> var = LocalVariableDeclarator() {list.add(var);})*
+ {
+ final VariableDeclaration[] vars = new VariableDeclaration[list.size()];
+ list.toArray(vars);
+ return vars;}
}
-void LocalVariableDeclarator() :
-{}
+VariableDeclaration LocalVariableDeclarator() :
{
- VariableDeclaratorId() [ <ASSIGN> Expression() ]
+ final String varName;
+ Expression initializer = null;
+ final int pos = SimpleCharStream.getPosition();
+}
+{
+ varName = VariableDeclaratorId() [ <ASSIGN> initializer = Expression() ]
+ {
+ if (initializer == null) {
+ return new VariableDeclaration(currentSegment,
+ varName.toCharArray(),
+ pos,
+ SimpleCharStream.getPosition());
+ }
+ return new VariableDeclaration(currentSegment,
+ varName.toCharArray(),
+ initializer,
+ pos);
+ }
}
-void EmptyStatement() :
-{}
+EmptyStatement EmptyStatement() :
+{
+ final int pos;
+}
{
<SEMICOLON>
+ {pos = SimpleCharStream.getPosition();
+ return new EmptyStatement(pos-1,pos);}
}
-void StatementExpression() :
-{}
+Expression StatementExpression() :
{
- PreIncDecExpression()
+ final Expression expr,expr2;
+ final int operator;
+}
+{
+ expr = PreIncDecExpression() {return expr;}
|
- PrimaryExpression()
- [
- <INCR>
- |
- <DECR>
- |
- AssignmentOperator() Expression()
+ expr = PrimaryExpression()
+ [ <PLUS_PLUS> {return new PostfixedUnaryExpression(expr,
+ OperatorIds.PLUS_PLUS,
+ SimpleCharStream.getPosition());}
+ | <MINUS_MINUS> {return new PostfixedUnaryExpression(expr,
+ OperatorIds.MINUS_MINUS,
+ SimpleCharStream.getPosition());}
+ | operator = AssignmentOperator() expr2 = Expression()
+ {return new BinaryExpression(expr,expr2,operator);}
]
+ {return expr;}
}
-void SwitchStatement() :
+SwitchStatement SwitchStatement() :
{
- final int pos = jj_input_stream.getPosition();
+ final Expression variable;
+ final AbstractCase[] cases;
+ final int pos = SimpleCharStream.getPosition();
}
{
<SWITCH>
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
- Expression()
+ variable = Expression()
} catch (ParseException e) {
if (errorMessage != null) {
throw e;
}
errorMessage = "expression expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
} catch (ParseException e) {
errorMessage = "')' expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- (switchStatementBrace() | switchStatementColon(pos, pos + 6))
+ (cases = switchStatementBrace() | cases = switchStatementColon(pos, pos + 6))
+ {return new SwitchStatement(variable,cases,pos,SimpleCharStream.getPosition());}
}
-void switchStatementBrace() :
-{}
+AbstractCase[] switchStatementBrace() :
+{
+ AbstractCase cas;
+ final ArrayList cases = new ArrayList();
+}
{
<LBRACE>
- ( switchLabel0() )*
+ ( cas = switchLabel0() {cases.add(cas);})*
try {
<RBRACE>
+ {
+ final AbstractCase[] abcase = new AbstractCase[cases.size()];
+ cases.toArray(abcase);
+ return abcase;}
} catch (ParseException e) {
errorMessage = "'}' expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
* @param start the begin offset of the switch
* @param end the end offset of the switch
*/
-void switchStatementColon(final int start, final int end) :
-{}
+AbstractCase[] switchStatementColon(final int start, final int end) :
+{
+ AbstractCase cas;
+ final ArrayList cases = new ArrayList();
+}
{
<COLON>
{try {
} catch (CoreException e) {
PHPeclipsePlugin.log(e);
}}
- (switchLabel0())*
+ ( cas = switchLabel0() {cases.add(cas);})*
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
<SEMICOLON>
+ {
+ final AbstractCase[] abcase = new AbstractCase[cases.size()];
+ cases.toArray(abcase);
+ return abcase;}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-void switchLabel0() :
+AbstractCase switchLabel0() :
{
- Token breakToken = null;
- final int line;
+ final Expression expr;
+ Statement statement;
+ final ArrayList stmts = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
}
{
- line = SwitchLabel()
- ( BlockStatementNoBreak() | htmlBlock() )*
- [ breakToken = BreakStatement() ]
+ expr = SwitchLabel()
+ ( statement = BlockStatementNoBreak() {stmts.add(statement);}
+ | statement = htmlBlock() {stmts.add(statement);})*
+ [ statement = BreakStatement() {stmts.add(statement);}]
{
- 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);
- }
+ final Statement[] stmtsArray = new Statement[stmts.size()];
+ stmts.toArray(stmtsArray);
+ if (expr == null) {//it's a default
+ return new DefaultCase(stmtsArray,pos,SimpleCharStream.getPosition());
}
+ return new Case(expr,stmtsArray,pos,SimpleCharStream.getPosition());}
}
-Token BreakStatement() :
+/**
+ * A SwitchLabel.
+ * case Expression() :
+ * default :
+ * @return the if it was a case and null if not
+ */
+Expression SwitchLabel() :
{
- final Token token;
-}
-{
- token = <BREAK> [ Expression() ]
- try {
- <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;
- throw e;
- }
- {return token;}
-}
-
-int SwitchLabel() :
-{
- final Token token;
+ final Expression expr;
}
{
token = <CASE>
try {
- Expression()
+ expr = Expression()
} catch (ParseException e) {
if (errorMessage != null) 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
<COLON>
+ {return expr;}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {return token.beginLine;}
|
token = <_DEFAULT>
try {
<COLON>
+ {return null;}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- {return token.beginLine;}
}
-void IfStatement() :
+Break BreakStatement() :
{
- final Token token;
- final int pos = jj_input_stream.getPosition();
+ Expression expression = null;
+ final int start = SimpleCharStream.getPosition();
}
{
- token = <IF> Condition("if") IfStatement0(pos,pos+token.image.length())
+ <BREAK> [ expression = Expression() ]
+ try {
+ <SEMICOLON>
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'break' keyword";
+ errorLevel = ERROR;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ throw e;
+ }
+ {return new Break(expression, start, SimpleCharStream.getPosition());}
}
-void Condition(final String keyword) :
-{}
+IfStatement IfStatement() :
+{
+ final int pos = SimpleCharStream.getPosition();
+ final Expression condition;
+ final IfStatement ifStatement;
+}
+{
+ <IF> condition = Condition("if") ifStatement = IfStatement0(condition, pos,pos+2)
+ {return ifStatement;}
+}
+
+
+Expression Condition(final String keyword) :
+{
+ final Expression condition;
+}
{
try {
<LPAREN>
} catch (ParseException e) {
errorMessage = "'(' expected after " + keyword + " keyword";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length();
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length();
errorEnd = errorStart +1;
processParseException(e);
}
- Expression()
+ condition = Expression()
try {
<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;
- throw e;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
+ processParseException(e);
}
+ {return condition;}
}
-void IfStatement0(final int start,final int end) :
-{}
+IfStatement IfStatement0(final Expression condition, final int start,final int end) :
+{
+ Statement statement;
+ final Statement stmt;
+ final Statement[] statementsArray;
+ ElseIf elseifStatement;
+ Else elseStatement = null;
+ final ArrayList stmts;
+ final ArrayList elseIfList = new ArrayList();
+ final ElseIf[] elseIfs;
+ int pos = SimpleCharStream.getPosition();
+ final int endStatements;
+}
{
- <COLON> (Statement() | htmlBlock())* (ElseIfStatementColon())* [ElseStatementColon()]
+ <COLON>
+ {stmts = new ArrayList();}
+ ( statement = Statement() {stmts.add(statement);}
+ | statement = htmlBlock() {stmts.add(statement);})*
+ {endStatements = SimpleCharStream.getPosition();}
+ (elseifStatement = ElseIfStatementColon() {elseIfList.add(elseifStatement);})*
+ [elseStatement = ElseStatementColon()]
{try {
setMarker(fileToParse,
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
+ {
+ elseIfs = new ElseIf[elseIfList.size()];
+ elseIfList.toArray(elseIfs);
+ if (stmts.size() == 1) {
+ return new IfStatement(condition,
+ (Statement) stmts.get(0),
+ elseIfs,
+ elseStatement,
+ pos,
+ SimpleCharStream.getPosition());
+ } else {
+ statementsArray = new Statement[stmts.size()];
+ stmts.toArray(statementsArray);
+ return new IfStatement(condition,
+ new Block(statementsArray,pos,endStatements),
+ elseIfs,
+ elseStatement,
+ pos,
+ SimpleCharStream.getPosition());
+ }
+ }
+
|
- (Statement() | htmlBlock())
- ( LOOKAHEAD(1) ElseIfStatement() )*
+ (stmt = Statement() | stmt = htmlBlock())
+ ( LOOKAHEAD(1) elseifStatement = ElseIfStatement() {elseIfList.add(elseifStatement);})*
[ LOOKAHEAD(1)
<ELSE>
try {
- Statement()
+ {pos = SimpleCharStream.getPosition();}
+ statement = Statement()
+ {elseStatement = new Else(statement,pos,SimpleCharStream.getPosition());}
} catch (ParseException e) {
if (errorMessage != null) {
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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
]
+ {
+ elseIfs = new ElseIf[elseIfList.size()];
+ elseIfList.toArray(elseIfs);
+ return new IfStatement(condition,
+ stmt,
+ elseIfs,
+ elseStatement,
+ pos,
+ SimpleCharStream.getPosition());}
}
-void ElseIfStatementColon() :
-{}
+ElseIf ElseIfStatementColon() :
{
- <ELSEIF> Condition("elseif") <COLON> (Statement() | htmlBlock())*
+ final Expression condition;
+ Statement statement;
+ final ArrayList list = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
+}
+{
+ <ELSEIF> condition = Condition("elseif")
+ <COLON> ( statement = Statement() {list.add(statement);}
+ | statement = htmlBlock() {list.add(statement);})*
+ {
+ final Statement[] stmtsArray = new Statement[list.size()];
+ list.toArray(stmtsArray);
+ return new ElseIf(condition,stmtsArray ,pos,SimpleCharStream.getPosition());}
}
-void ElseStatementColon() :
-{}
+Else ElseStatementColon() :
+{
+ Statement statement;
+ final ArrayList list = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
+}
{
- <ELSE> <COLON> (Statement() | htmlBlock())*
+ <ELSE> <COLON> ( statement = Statement() {list.add(statement);}
+ | statement = htmlBlock() {list.add(statement);})*
+ {
+ final Statement[] stmtsArray = new Statement[list.size()];
+ list.toArray(stmtsArray);
+ return new Else(stmtsArray,pos,SimpleCharStream.getPosition());}
}
-void ElseIfStatement() :
-{}
+ElseIf ElseIfStatement() :
+{
+ final Expression condition;
+ final Statement statement;
+ final ArrayList list = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
+}
{
- <ELSEIF> Condition("elseif") Statement()
+ <ELSEIF> condition = Condition("elseif") statement = Statement() {list.add(statement);/*todo:do better*/}
+ {
+ final Statement[] stmtsArray = new Statement[list.size()];
+ list.toArray(stmtsArray);
+ return new ElseIf(condition,stmtsArray,pos,SimpleCharStream.getPosition());}
}
-void WhileStatement() :
+WhileStatement WhileStatement() :
{
- final Token token;
- final int pos = jj_input_stream.getPosition();
+ final Expression condition;
+ final Statement action;
+ final int pos = SimpleCharStream.getPosition();
}
{
- token = <WHILE> Condition("while") WhileStatement0(pos,pos + token.image.length())
+ <WHILE>
+ condition = Condition("while")
+ action = WhileStatement0(pos,pos + 5)
+ {return new WhileStatement(condition,action,pos,SimpleCharStream.getPosition());}
}
-void WhileStatement0(final int start, final int end) :
-{}
+Statement WhileStatement0(final int start, final int end) :
{
- <COLON> (Statement())*
+ Statement statement;
+ final ArrayList stmts = new ArrayList();
+ final int pos = SimpleCharStream.getPosition();
+}
+{
+ <COLON> (statement = Statement() {stmts.add(statement);})*
{try {
setMarker(fileToParse,
"Ugly syntax detected, you should while () {...} instead of while (): ... 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
<SEMICOLON>
+ {
+ final Statement[] stmtsArray = new Statement[stmts.size()];
+ stmts.toArray(stmtsArray);
+ return new Block(stmtsArray,pos,SimpleCharStream.getPosition());}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
|
- Statement()
+ statement = Statement()
+ {return statement;}
}
-void DoStatement() :
-{}
+DoStatement DoStatement() :
{
- <DO> Statement() <WHILE> Condition("while")
+ final Statement action;
+ final Expression condition;
+ final int pos = SimpleCharStream.getPosition();
+}
+{
+ <DO> action = Statement() <WHILE> condition = Condition("while")
try {
<SEMICOLON>
+ {return new DoStatement(condition,action,pos,SimpleCharStream.getPosition());}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-void ForeachStatement() :
-{}
+ForeachStatement ForeachStatement() :
+{
+ Statement statement;
+ Expression expression;
+ final int pos = SimpleCharStream.getPosition();
+ ArrayVariableDeclaration variable;
+}
{
<FOREACH>
try {
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
- Variable()
+ expression = Expression()
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- ( VariableSuffix() )*
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
- Variable()
+ variable = ArrayVariable()
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- [ <ARRAYASSIGN> Expression() ]
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
- Statement()
+ statement = Statement()
} catch (ParseException e) {
if (errorMessage != null) throw e;
errorMessage = "statement expected";
errorLevel = ERROR;
- errorStart = jj_input_stream.getPosition() - e.currentToken.next.image.length() + 1;
- errorEnd = jj_input_stream.getPosition() + 1;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
+ {return new ForeachStatement(expression,
+ variable,
+ statement,
+ pos,
+ SimpleCharStream.getPosition());}
+
}
-void ForStatement() :
+ForStatement ForStatement() :
{
final Token token;
-final int pos = jj_input_stream.getPosition();
+final int pos = SimpleCharStream.getPosition();
+Expression[] initializations = null;
+Expression condition = null;
+Expression[] increments = null;
+Statement action;
+final ArrayList list = new ArrayList();
+final int startBlock, endBlock;
}
{
token = <FOR>
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
- [ ForInit() ] <SEMICOLON> [ Expression() ] <SEMICOLON> [ StatementExpressionList() ] <RPAREN>
+ [ initializations = ForInit() ] <SEMICOLON>
+ [ condition = Expression() ] <SEMICOLON>
+ [ increments = StatementExpressionList() ] <RPAREN>
(
- Statement()
+ action = Statement()
+ {return new ForStatement(initializations,condition,increments,action,pos,SimpleCharStream.getPosition());}
|
- <COLON> (Statement())*
+ <COLON>
+ {startBlock = SimpleCharStream.getPosition();}
+ (action = Statement() {list.add(action);})*
{
try {
setMarker(fileToParse,
PHPeclipsePlugin.log(e);
}
}
+ {endBlock = SimpleCharStream.getPosition();}
try {
<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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
try {
<SEMICOLON>
+ {
+ final Statement[] stmtsArray = new Statement[list.size()];
+ list.toArray(stmtsArray);
+ return new ForStatement(initializations,condition,increments,new Block(stmtsArray,startBlock,endBlock),pos,SimpleCharStream.getPosition());}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
)
}
-void ForInit() :
-{}
+Expression[] ForInit() :
+{
+ final Expression[] exprs;
+}
{
LOOKAHEAD(LocalVariableDeclaration())
- LocalVariableDeclaration()
+ exprs = LocalVariableDeclaration()
+ {return exprs;}
|
- StatementExpressionList()
+ exprs = StatementExpressionList()
+ {return exprs;}
}
-void StatementExpressionList() :
-{}
+Expression[] StatementExpressionList() :
{
- StatementExpression() ( <COMMA> StatementExpression() )*
+ final ArrayList list = new ArrayList();
+ final Expression expr;
+}
+{
+ expr = StatementExpression() {list.add(expr);}
+ (<COMMA> StatementExpression() {list.add(expr);})*
+ {
+ final Expression[] exprsArray = new Expression[list.size()];
+ list.toArray(exprsArray);
+ return exprsArray;}
}
-void ContinueStatement() :
-{}
+Continue ContinueStatement() :
+{
+ Expression expr = null;
+ final int pos = SimpleCharStream.getPosition();
+}
{
- <CONTINUE> [ Expression() ]
+ <CONTINUE> [ expr = Expression() ]
try {
<SEMICOLON>
+ {return new Continue(expr,pos,SimpleCharStream.getPosition());}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
-void ReturnStatement() :
-{}
+ReturnStatement ReturnStatement() :
+{
+ Expression expr = null;
+ final int pos = SimpleCharStream.getPosition();
+}
{
- <RETURN> [ Expression() ]
+ <RETURN> [ expr = Expression() ]
try {
<SEMICOLON>
+ {return new ReturnStatement(expr,pos,SimpleCharStream.getPosition());}
} 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;
+ errorStart = SimpleCharStream.getPosition() - e.currentToken.next.image.length() + 1;
+ errorEnd = SimpleCharStream.getPosition() + 1;
throw e;
}
}
\ No newline at end of file