*/
public final class PHPParser extends PHPParserSuperclass {
+ /** The file that is parsed. */
private static IFile fileToParse;
/** The current segment */
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;
+
+ /** The error level of the current ParseException. */
private static int errorLevel = ERROR;
+ /** The message of the current ParseException. If it's null it's because the parse exception wasn't handled */
private static String errorMessage;
+ private static int errorStart = -1;
+ private static int errorEnd = -1;
+
public PHPParser() {
}
*/
private static void setMarker(final ParseException e) {
try {
- setMarker(fileToParse,
- errorMessage,
- jj_input_stream.tokenBegin,
- jj_input_stream.tokenBegin + e.currentToken.image.length(),
- errorLevel,
- "Line " + e.currentToken.beginLine);
+ if (errorStart == -1) {
+ setMarker(fileToParse,
+ errorMessage,
+ jj_input_stream.tokenBegin,
+ jj_input_stream.tokenBegin + e.currentToken.image.length(),
+ errorLevel,
+ "Line " + e.currentToken.beginLine);
+ } else {
+ setMarker(fileToParse,
+ errorMessage,
+ errorStart,
+ errorEnd,
+ errorLevel,
+ "Line " + e.currentToken.beginLine);
+ errorStart = -1;
+ errorEnd = -1;
+ }
} catch (CoreException e2) {
PHPeclipsePlugin.log(e2);
}
<DEFAULT> TOKEN :
{
- <PHPSTARTSHORT : "<?"> : PHPPARSING
+ <PHPSTARTSHORT : "<?"> : PHPPARSING
| <PHPSTARTLONG : "<?php"> : PHPPARSING
-| <PHPECHOSTART : "<?="> : PHPPARSING
+| <PHPECHOSTART : "<?="> : PHPPARSING
}
<PHPPARSING> TOKEN :
{
"//" : IN_SINGLE_LINE_COMMENT
|
+ "#" : IN_SINGLE_LINE_COMMENT
+|
<"/**" ~["/"]> { input_stream.backup(1); } : IN_FORMAL_COMMENT
|
"/*" : IN_MULTI_LINE_COMMENT
{
final PHPClassDeclaration classDeclaration;
final Token className;
- final int pos = jj_input_stream.bufpos;
+ final int pos;
}
{
- <CLASS> className = <IDENTIFIER> [ <EXTENDS> <IDENTIFIER> ]
+ <CLASS>
+ try {
+ {pos = jj_input_stream.bufpos;}
+ className = <IDENTIFIER>
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected";
+ errorLevel = ERROR;
+ throw e;
+ }
+ [
+ <EXTENDS>
+ try {
+ <IDENTIFIER>
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', identifier expected";
+ errorLevel = ERROR;
+ throw e;
+ }
+ ]
{
if (currentSegment != null) {
classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos);
final PHPFunctionDeclaration functionDeclaration;
}
{
- <FUNCTION> functionDeclaration = MethodDeclarator()
+ <FUNCTION>
+ try {
+ functionDeclaration = MethodDeclarator()
+ } catch (ParseException e) {
+ if (errorMessage != null) {
+ throw e;
+ }
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', function identifier expected";
+ errorLevel = ERROR;
+ throw e;
+ }
{
if (currentSegment != null) {
currentSegment.add(functionDeclaration);
| operator = <BANGDOUBLEEQUAL>
| operator = <TRIPLEEQUAL>
)
- expr = RelationalExpression()
+ try {
+ expr = RelationalExpression()
+ } catch (ParseException e) {
+ errorMessage = "unexpected token : '"+ e.currentToken.next.image +"', expression expected after '"+operator.image+"'";
+ errorLevel = ERROR;
+ throw e;
+ }
{
buff.append(operator.image);
buff.append(expr);
LOOKAHEAD(2)
Expression()
try {
- (<SEMICOLON> | <PHPEND>)
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
}
}
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
}
}
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
}
}
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
}
}
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
{
<ECHO> Expression() (<COMMA> Expression())*
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected after 'echo' statement";
errorLevel = ERROR;
{
<GLOBAL> VariableDeclaratorId() (<COMMA> VariableDeclaratorId())*
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
{
<STATIC> VariableDeclarator() (<COMMA> VariableDeclarator())*
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
(
line = SwitchLabel()
( BlockStatementNoBreak() )*
- [ breakToken = <BREAK>
- try {
- <SEMICOLON>
- } catch (ParseException e) {
- errorMessage = "';' expected after 'break' keyword";
- errorLevel = ERROR;
- throw e;
- }
- ]
+ [ breakToken = BreakStatement() ]
{
try {
if (breakToken == null) {
}
}
+Token BreakStatement() :
+{
+ final Token token;
+}
+{
+ token = <BREAK> [ Expression() ]
+ try {
+ <SEMICOLON>
+ } catch (ParseException e) {
+ errorMessage = "';' expected after 'break' keyword";
+ errorLevel = ERROR;
+ throw e;
+ }
+ {return token;}
+}
+
int SwitchLabel() :
{
final Token token;
throw e;
}
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected after 'endwhile' keyword";
errorLevel = ERROR;
{
<DO> Statement() <WHILE> Condition("while")
try {
- (<SEMICOLON> | "?>")
+ (<SEMICOLON> | <PHPEND> {PHPParserTokenManager.SwitchTo(PHPParserTokenManager.DEFAULT);})
} catch (ParseException e) {
errorMessage = "';' expected";
errorLevel = ERROR;
StatementExpression() ( <COMMA> StatementExpression() )*
}
-void BreakStatement() :
-{}
-{
- <BREAK> [ <IDENTIFIER> ]
- try {
- <SEMICOLON>
- } catch (ParseException e) {
- errorMessage = "';' expected after 'break' statement";
- errorLevel = ERROR;
- throw e;
- }
-}
-
void ContinueStatement() :
{}
{