Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / test / PHPParser.jj
diff --git a/net.sourceforge.phpeclipse/src/test/PHPParser.jj b/net.sourceforge.phpeclipse/src/test/PHPParser.jj
deleted file mode 100644 (file)
index a6bce7c..0000000
+++ /dev/null
@@ -1,1639 +0,0 @@
-options {
-  LOOKAHEAD = 1;
-  CHOICE_AMBIGUITY_CHECK = 2;
-  OTHER_AMBIGUITY_CHECK = 1;
-  STATIC = true;
-  DEBUG_PARSER = false;
-  DEBUG_LOOKAHEAD = false;
-  DEBUG_TOKEN_MANAGER = false;
-  OPTIMIZE_TOKEN_MANAGER = false;
-  ERROR_REPORTING = true;
-  JAVA_UNICODE_ESCAPE = false;
-  UNICODE_INPUT = false;
-  IGNORE_CASE = true;
-  USER_TOKEN_MANAGER = false;
-  USER_CHAR_STREAM = false;
-  BUILD_PARSER = true;
-  BUILD_TOKEN_MANAGER = true;
-  SANITY_CHECK = true;
-  FORCE_LA_CHECK = false;
-}
-
-PARSER_BEGIN(PHPParser)
-package test;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IMarker;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.ui.texteditor.MarkerUtilities;
-import org.eclipse.jface.preference.IPreferenceStore;
-
-import java.util.Hashtable;
-import java.io.StringReader;
-import java.text.MessageFormat;
-
-import net.sourceforge.phpeclipse.actions.PHPStartApacheAction;
-import net.sourceforge.phpeclipse.PHPeclipsePlugin;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPOutlineInfo;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPSegmentWithChildren;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPFunctionDeclaration;
-import net.sourceforge.phpdt.internal.compiler.parser.PHPClassDeclaration;
-
-/**
- * A new php parser.
- * This php parser is inspired by the Java 1.2 grammar example 
- * given with JavaCC. You can get JavaCC at http://www.webgain.com
- * You can test the parser with the PHPParserTestCase2.java
- * @author Matthieu Casanova
- */
-public class PHPParser extends PHPParserSuperclass {
-
-  private static IFile fileToParse;
-
-  /** The current segment */
-  private static PHPSegmentWithChildren currentSegment;
-
-  private static final String PARSE_ERROR_STRING = "Parse error"; //$NON-NLS-1$
-  private static final String PARSE_WARNING_STRING = "Warning"; //$NON-NLS-1$
-  public static final int ERROR = 2;
-  public static final int WARNING = 1;
-  public static final int INFO = 0;
-  PHPOutlineInfo outlineInfo;
-  private static int errorLevel = ERROR;
-  private static String errorMessage;
-
-  public PHPParser() {
-  }
-
-  public void setFileToParse(IFile fileToParse) {
-    this.fileToParse = fileToParse;
-  }
-
-  public PHPParser(IFile fileToParse) {
-    this(new StringReader(""));
-    this.fileToParse = fileToParse;
-  }
-
-  public void phpParserTester(String strEval) throws CoreException, ParseException {
-    PHPParserTokenManager.SwitchTo(PHPParserTokenManager.PHPPARSING);
-    StringReader stream = new StringReader(strEval);
-    if (jj_input_stream == null) {
-      jj_input_stream = new SimpleCharStream(stream, 1, 1);
-    }
-    ReInit(new StringReader(strEval));
-    phpTest();
-  }
-
-  public void htmlParserTester(String strEval) throws CoreException, ParseException {
-    StringReader stream = new StringReader(strEval);
-    if (jj_input_stream == null) {
-      jj_input_stream = new SimpleCharStream(stream, 1, 1);
-    }
-    ReInit(stream);
-    phpFile();
-  }
-
-  public PHPOutlineInfo parseInfo(Object parent, String s) {
-    outlineInfo = new PHPOutlineInfo(parent);
-    currentSegment = outlineInfo.getDeclarations();
-    StringReader stream = new StringReader(s);
-    if (jj_input_stream == null) {
-      jj_input_stream = new SimpleCharStream(stream, 1, 1);
-    }
-    ReInit(stream);
-    try {
-      parse();
-    } catch (ParseException e) {
-      if (errorMessage == null) {
-        PHPeclipsePlugin.log(e);
-      } else {
-        setMarker(errorMessage, e.currentToken.beginLine, errorLevel);
-        errorMessage = null;
-      }
-    }
-    return outlineInfo;
-  }
-
-
-  /**
-   * Create marker for the parse error
-   */
-  private static void setMarker(String message, int lineNumber, int errorLevel) {
-    try {
-      setMarker(fileToParse, message, lineNumber, errorLevel);
-    } catch (CoreException e) {
-      PHPeclipsePlugin.log(e);
-    }
-  }
-
-  public static void setMarker(IFile file, String message, int lineNumber, int errorLevel) throws CoreException {
-    if (file != null) {
-      Hashtable attributes = new Hashtable();
-      MarkerUtilities.setMessage(attributes, message);
-      switch (errorLevel) {
-        case ERROR :
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_ERROR));
-          break;
-        case WARNING :
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_WARNING));
-          break;
-        case INFO :
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_INFO));
-          break;
-      }
-      MarkerUtilities.setLineNumber(attributes, lineNumber);
-      MarkerUtilities.createMarker(file, attributes, IMarker.PROBLEM);
-    }
-  }
-
-  /**
-   * Create markers according to the external parser output
-   */
-  private static void createMarkers(String output, IFile file) throws CoreException {
-    // delete all markers
-    file.deleteMarkers(IMarker.PROBLEM, false, 0);
-
-    int indx = 0;
-    int brIndx = 0;
-    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(String output, IFile file, int indx, int brIndx) throws CoreException {
-    String current;
-    StringBuffer lineNumberBuffer = new StringBuffer(10);
-    char ch;
-    current = output.substring(indx, brIndx);
-
-    if (current.indexOf(PARSE_WARNING_STRING) != -1 || current.indexOf(PARSE_ERROR_STRING) != -1) {
-      int onLine = current.indexOf("on line <b>");
-      if (onLine != -1) {
-        lineNumberBuffer.delete(0, lineNumberBuffer.length());
-        for (int i = onLine; i < current.length(); i++) {
-          ch = current.charAt(i);
-          if ('0' <= ch && '9' >= ch) {
-            lineNumberBuffer.append(ch);
-          }
-        }
-
-        int lineNumber = Integer.parseInt(lineNumberBuffer.toString());
-
-        Hashtable attributes = new Hashtable();
-
-        current = current.replaceAll("\n", "");
-        current = current.replaceAll("<b>", "");
-        current = current.replaceAll("</b>", "");
-        MarkerUtilities.setMessage(attributes, current);
-
-        if (current.indexOf(PARSE_ERROR_STRING) != -1)
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_ERROR));
-        else if (current.indexOf(PARSE_WARNING_STRING) != -1)
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_WARNING));
-        else
-          attributes.put(IMarker.SEVERITY, new Integer(IMarker.SEVERITY_INFO));
-        MarkerUtilities.setLineNumber(attributes, lineNumber);
-        MarkerUtilities.createMarker(file, attributes, IMarker.PROBLEM);
-      }
-    }
-  }
-
-  public void parse(String s) throws CoreException {
-    ReInit(new StringReader(s));
-    try {
-      parse();
-    } catch (ParseException e) {
-      if (errorMessage == null) {
-        PHPeclipsePlugin.log(e);
-      } else {
-        setMarker(errorMessage, e.currentToken.beginLine, errorLevel);
-        errorMessage = null;
-      }
-    }
-  }
-
-  /**
-   * Call the php parse command ( php -l -f &lt;filename&gt; )
-   * and create markers according to the external parser output
-   */
-  public static void phpExternalParse(IFile file) {
-    IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
-    String filename = file.getLocation().toString();
-
-    String[] arguments = { filename };
-    MessageFormat form = new MessageFormat(store.getString(PHPeclipsePlugin.EXTERNAL_PARSER_PREF));
-    String command = form.format(arguments);
-
-    String parserResult = PHPStartApacheAction.getParserOutput(command, "External parser: ");
-
-    try {
-      // parse the buffer to find the errors and warnings
-      createMarkers(parserResult, file);
-    } catch (CoreException e) {
-      PHPeclipsePlugin.log(e);
-    }
-  }
-
-  public void parse() throws ParseException {
-         phpFile();
-  }
-}
-
-PARSER_END(PHPParser)
-
-<DEFAULT> TOKEN :
-{
-  <PHPSTART : "<?php" | "<?"> : PHPPARSING
-}
-
-<PHPPARSING> TOKEN :
-{
-  <PHPEND :"?>"> : DEFAULT
-}
-
-<DEFAULT> SKIP :
-{
- < ~[] >
-}
-
-
-/* WHITE SPACE */
-
-<PHPPARSING> SKIP :
-{
-  " "
-| "\t"
-| "\n"
-| "\r"
-| "\f"
-}
-
-/* COMMENTS */
-
-<PHPPARSING> MORE :
-{
-  "//" : 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
-}
-
-<IN_FORMAL_COMMENT>
-SPECIAL_TOKEN :
-{
-  <FORMAL_COMMENT: "*/" > : PHPPARSING
-}
-
-<IN_MULTI_LINE_COMMENT>
-SPECIAL_TOKEN :
-{
-  <MULTI_LINE_COMMENT: "*/" > : PHPPARSING
-}
-
-<IN_SINGLE_LINE_COMMENT,IN_FORMAL_COMMENT,IN_MULTI_LINE_COMMENT>
-MORE :
-{
-  < ~[] >
-}
-
-/* KEYWORDS */
-<PHPPARSING> TOKEN :
-{
-  <CLASS    : "class">
-| <FUNCTION : "function">
-| <VAR      : "var">
-| <IF       : "if">
-| <ELSEIF   : "elseif">
-| <ELSE     : "else">
-| <ARRAY    : "array">
-}
-
-/* LANGUAGE CONSTRUCT */
-<PHPPARSING> TOKEN :
-{
-  <PRINT : "print">
-| <ECHO : "echo">
-| <INCLUDE : "include">
-| <REQUIRE : "require">
-| <INCLUDE_ONCE : "include_once">
-| <REQUIRE_ONCE : "require_once">
-| <GLOBAL : "global">
-| <STATIC : "static">
-| <CLASSACCESS: "->">
-| <STATICCLASSACCESS: "::">
-| <ARRAYASSIGN: "=>">
-}
-
-/* RESERVED WORDS AND LITERALS */
-
-<PHPPARSING> TOKEN :
-{
-  < BREAK: "break" >
-| < CASE: "case" >
-| < CONST: "const" >
-| < CONTINUE: "continue" >
-| < _DEFAULT: "default" >
-| < DO: "do" >
-| < EXTENDS: "extends" >
-| < FALSE: "false" >
-| < FOR: "for" >
-| < GOTO: "goto" >
-| < NEW: "new" >
-| < NULL: "null" >
-| < RETURN: "return" >
-| < SUPER: "super" >
-| < SWITCH: "switch" >
-| < THIS: "this" >
-| < TRUE: "true" >
-| < WHILE: "while" >
-| < ENDWHILE : "endwhile" >
-}
-
-/* TYPES */
-
-<PHPPARSING> TOKEN :
-{
-  <STRING : "string">
-| <OBJECT : "object">
-| <BOOL : "bool">
-| <BOOLEAN : "boolean">
-| <REAL : "real">
-| <DOUBLE : "double">
-| <FLOAT : "float">
-| <INT : "int">
-| <INTEGER : "integer">
-}
-
-<PHPPARSING> TOKEN :
-{
-  < _ORL : "OR" >
-| < _ANDL: "AND">
-}
-
-/* LITERALS */
-
-<PHPPARSING> TOKEN :
-{
-  < INTEGER_LITERAL:
-        <DECIMAL_LITERAL> (["l","L"])?
-      | <HEX_LITERAL> (["l","L"])?
-      | <OCTAL_LITERAL> (["l","L"])?
-  >
-|
-  < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
-|
-  < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
-|
-  < #OCTAL_LITERAL: "0" (["0"-"7"])* >
-|
-  < 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"])+ >
-|
-  < STRING_LITERAL: (<STRING_1> | <STRING_2> | <STRING_3>)>
-|    < STRING_1:
-      "\""
-      (   (~["\""])
-        | "\\\""
-      )*
-      "\""
-    >
-|    < STRING_2:
-      "'"
-      (   (~["'"]))*
-
-      "'"
-    >
-|   < STRING_3:
-      "`"
-      (   (~["`"]))*
-      "`"
-    >
-}
-
-/* IDENTIFIERS */
-
-<PHPPARSING> TOKEN :
-{
-  < IDENTIFIER: (<LETTER>|<SPECIAL>) (<LETTER>|<DIGIT>|<SPECIAL>)* >
-|
-  < #LETTER:
-      ["a"-"z"] | ["A"-"Z"]
-  >
-|
-  < #DIGIT:
-      ["0"-"9"]
-  >
-|
-  < #SPECIAL:
-    "_"
-  >
-}
-
-/* SEPARATORS */
-
-<PHPPARSING> TOKEN :
-{
-  < LPAREN: "(" >
-| < RPAREN: ")" >
-| < LBRACE: "{" >
-| < RBRACE: "}" >
-| < LBRACKET: "[" >
-| < RBRACKET: "]" >
-| < SEMICOLON: ";" >
-| < COMMA: "," >
-| < DOT: "." >
-}
-
-/* OPERATORS */
-
-<PHPPARSING> TOKEN :
-{
-  <AT     : "@">
-| <DOLLAR : "$">
-| < ASSIGN: "=" >
-| < GT: ">" >
-| < LT: "<" >
-| < BANG: "!" >
-| < HOOK: "?" >
-| < COLON: ":" >
-| < EQ: "==" >
-| < LE: "<=" >
-| < GE: ">=" >
-| < NE: "!=" >
-| < SC_OR: "||" >
-| < SC_AND: "&&" >
-| < INCR: "++" >
-| < DECR: "--" >
-| < PLUS: "+" >
-| < MINUS: "-" >
-| < STAR: "*" >
-| < SLASH: "/" >
-| < BIT_AND: "&" >
-| < BIT_OR: "|" >
-| < XOR: "^" >
-| < REM: "%" >
-| < LSHIFT: "<<" >
-| < RSIGNEDSHIFT: ">>" >
-| < RUNSIGNEDSHIFT: ">>>" >
-| < PLUSASSIGN: "+=" >
-| < MINUSASSIGN: "-=" >
-| < STARASSIGN: "*=" >
-| < SLASHASSIGN: "/=" >
-| < ANDASSIGN: "&=" >
-| < ORASSIGN: "|=" >
-| < XORASSIGN: "^=" >
-| < DOTASSIGN: ".=" >
-| < REMASSIGN: "%=" >
-| < LSHIFTASSIGN: "<<=" >
-| < RSIGNEDSHIFTASSIGN: ">>=" >
-| < RUNSIGNEDSHIFTASSIGN: ">>>=" >
-}
-
-<PHPPARSING> TOKEN :
-{
-  < DOLLAR_ID: <DOLLAR> <IDENTIFIER>  >
-}
-
-/*****************************************
- * THE JAVA LANGUAGE GRAMMAR STARTS HERE *
- *****************************************/
-
-/*
- * Program structuring syntax follows.
- */
-
-void phpTest() :
-{}
-{
-  Php()
-  <EOF>
-}
-
-void phpFile() :
-{}
-{
-  (<PHPSTART> Php() <PHPEND>)*
-  <EOF>
-}
-
-void Php() :
-{}
-{
-  (BlockStatement())*
-}
-
-void ClassDeclaration() :
-{
-  PHPClassDeclaration classDeclaration;
-  Token className;
-  int pos = jj_input_stream.bufpos;
-}
-{
-  <CLASS> className = <IDENTIFIER> [ <EXTENDS> <IDENTIFIER> ]
-  {
-    classDeclaration = new PHPClassDeclaration(currentSegment,className.image,pos);
-    currentSegment.add(classDeclaration);
-    currentSegment = classDeclaration;
-  }
-  ClassBody()
-  {
-    currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
-  }
-}
-
-void ClassBody() :
-{}
-{
-  <LBRACE> ( ClassBodyDeclaration() )* <RBRACE>
-}
-
-void ClassBodyDeclaration() :
-{}
-{
-  MethodDeclaration()
-|
-  FieldDeclaration()
-}
-
-void FieldDeclaration() :
-{}
-{
-  <VAR> VariableDeclarator() ( <COMMA> VariableDeclarator() )* <SEMICOLON>
-}
-
-String VariableDeclarator() :
-{
-  String expr;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = VariableDeclaratorId()
-  {buff.append(expr);}
-  [ <ASSIGN> expr = VariableInitializer()
-    {buff.append("=").append(expr);}
-  ]
-  {return buff.toString();}
-}
-
-String VariableDeclaratorId() :
-{
-  String expr;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = Variable()
-  {buff.append(expr);}
-  ( LOOKAHEAD(2) expr = VariableSuffix()
-  {buff.append(expr);}
-  )*
-  {return buff.toString();}
-}
-
-String Variable():
-{
-  String expr = null;
-  Token token;
-}
-{
-  token = <DOLLAR_ID> [<LBRACE> expr = Expression() <RBRACE>]
-  {
-    if (expr == null) {
-      return token.image;
-    }
-    return token + "{" + expr + "}";
-  }
-|
-  <DOLLAR> expr = VariableName()
-  {return "$" + expr;}
-}
-
-String VariableName():
-{
-String expr = null;
-Token token;
-}
-{
-  <LBRACE> expr = Expression() <RBRACE>
-  {return "{"+expr+"}";}
-|
-  token = <IDENTIFIER> [<LBRACE> expr = Expression() <RBRACE>]
-  {
-    if (expr == null) {
-      return token.image;
-    }
-    return token + "{" + expr + "}";
-  }|
-  <DOLLAR> expr = VariableName()
-  {return "$" + expr;}
-}
-
-String VariableInitializer() :
-{
-  String expr;
-}
-{
-  expr = Expression()
-  {return expr;}
-}
-
-String ArrayVariable() :
-{
-String expr;
-StringBuffer buff = new StringBuffer();
-}
-{
-  expr = Expression()
-  {buff.append(expr);}
-   [<ARRAYASSIGN> expr = Expression()
-   {buff.append("=>").append(expr);}]
-  {return buff.toString();}
-}
-
-String ArrayInitializer() :
-{
-String expr = null;
-StringBuffer buff = new StringBuffer("(");
-}
-{
-  <LPAREN> [ expr = ArrayVariable()
-            {buff.append(expr);}
-            ( LOOKAHEAD(2) <COMMA> expr = ArrayVariable()
-            {buff.append(",").append(expr);}
-            )* ]
-  <RPAREN>
-  {
-    buff.append(")");
-    return buff.toString();
-  }
-}
-
-void MethodDeclaration() :
-{
-  PHPFunctionDeclaration functionDeclaration;
-}
-{
-  <FUNCTION> functionDeclaration = MethodDeclarator()
-  {
-    currentSegment.add(functionDeclaration);
-    currentSegment = functionDeclaration;
-  }
-  ( Block() | <SEMICOLON> )
-  {
-    currentSegment = (PHPSegmentWithChildren) currentSegment.getParent();
-  }
-}
-
-PHPFunctionDeclaration MethodDeclarator() :
-{
-  Token identifier;
-  StringBuffer methodDeclaration = new StringBuffer();
-  String formalParameters;
-  int pos = jj_input_stream.bufpos;
-}
-{
-  [ <BIT_AND> {methodDeclaration.append("&");}]
-  identifier = <IDENTIFIER> formalParameters = FormalParameters()
-  {
-    methodDeclaration.append(identifier).append(formalParameters);
-    return new PHPFunctionDeclaration(currentSegment,methodDeclaration.toString(),pos);
-  }
-}
-
-String FormalParameters() :
-{
-  String expr;
-  StringBuffer buff = new StringBuffer("(");
-}
-{
-  <LPAREN> [ expr = FormalParameter() {buff.append(expr);}
-            ( <COMMA> expr = FormalParameter()
-            {buff.append(",").append(expr);}
-            )* ] <RPAREN>
- {
-  buff.append(")");
-  return buff.toString();
- }
-}
-
-String FormalParameter() :
-{
-  String expr;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  [<BIT_AND> {buff.append("&");}] expr = VariableDeclarator()
-  {
-    buff.append(expr);
-    return buff.toString();
-  }
-}
-
-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";}
-}
-
-String Expression() :
-{
-  String expr;
-  String assignOperator = null;
-  String expr2 = null;
-}
-{
-  expr = PrintExpression()
-  {return expr;}
-|
-  expr = ConditionalExpression()
-  [
-    assignOperator = AssignmentOperator()
-    expr2 = Expression()
-  ]
-  {
-    if (expr2 == null) {
-      return expr;
-    } else {
-      return expr + assignOperator + expr2;
-    }
-  }
-}
-
-String AssignmentOperator() :
-{
-  Token assignOperator;
-}
-{
-  <ASSIGN>
-{return "=";}
-| <STARASSIGN>
-{return "*=";}
-| <SLASHASSIGN>
-{return "/=";}
-| <REMASSIGN>
-{return "%=";}
-| <PLUSASSIGN>
-{return "+=";}
-| <MINUSASSIGN>
-{return "-=";}
-| <LSHIFTASSIGN>
-{return "<<=";}
-| <RSIGNEDSHIFTASSIGN>
-{return ">>=";}
-| <RUNSIGNEDSHIFTASSIGN>
-{return ">>>=";}
-| <ANDASSIGN>
-{return "&=";}
-| <XORASSIGN>
-{return "|=";}
-| <ORASSIGN>
-{return "|=";}
-| <DOTASSIGN>
-{return ".=";}
-}
-
-String ConditionalExpression() :
-{
-  String expr;
-  String expr2 = null;
-  String expr3 = null;
-}
-{
-  expr = ConditionalOrExpression() [ <HOOK> expr2 = Expression() <COLON> expr3 = ConditionalExpression() ]
-{
-  if (expr3 == null) {
-    return expr;
-  } else {
-    return expr + "?" + expr2 + ":" + expr3;
-  }
-}
-}
-
-String ConditionalOrExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = ConditionalAndExpression()
-  {
-    buff.append(expr);
-  }
-  (
-    (operator = <SC_OR> | operator = <_ORL>) expr2 = ConditionalAndExpression()
-    {
-      buff.append(operator.image);
-      buff.append(expr2);
-    }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String ConditionalAndExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = ConcatExpression()
-  {
-    buff.append(expr);
-  }
-  (
-  (operator = <SC_AND> | operator = <_ANDL>) expr2 = ConcatExpression()
-    {
-      buff.append(operator.image);
-      buff.append(expr2);
-    }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String ConcatExpression() :
-{
-  String expr;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = InclusiveOrExpression()
-  {
-    buff.append(expr);
-  }
-  (
-  <DOT> expr2 = InclusiveOrExpression()
-  {
-    buff.append(".");
-    buff.append(expr2);
-  }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String InclusiveOrExpression() :
-{
-  String expr;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = ExclusiveOrExpression()
-  {
-    buff.append(expr);
-  }
-  (
-  <BIT_OR> expr2 = ExclusiveOrExpression()
-  {
-    buff.append("|");
-    buff.append(expr2);
-  }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String ExclusiveOrExpression() :
-{
-  String expr;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = AndExpression()
-  {
-    buff.append(expr);
-  }
-  (
-    <XOR> expr2 = AndExpression()
-  {
-    buff.append("^");
-    buff.append(expr2);
-  }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String AndExpression() :
-{
-  String expr;
-  String expr2 = null;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = EqualityExpression()
-  {
-    buff.append(expr);
-  }
-  (
-    <BIT_AND> expr2 = EqualityExpression()
-  {
-    buff.append("&");
-    buff.append(expr2);
-  }
-  )*
-  {
-    return buff.toString();
-  }
-}
-
-String EqualityExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = RelationalExpression()
-  {buff.append(expr);}
-  (
-  ( operator = <EQ> | operator = <NE> ) expr2 = RelationalExpression()
-  {
-    buff.append(operator.image);
-    buff.append(expr2);
-  }
-  )*
-  {return buff.toString();}
-}
-
-String RelationalExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = ShiftExpression()
-  {buff.append(expr);}
-  (
-  ( operator = <LT> | operator = <GT> | operator = <LE> | operator = <GE> ) expr2 = ShiftExpression()
-  {
-    buff.append(operator.image);
-    buff.append(expr2);
-  }
-  )*
-  {return buff.toString();}
-}
-
-String ShiftExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = AdditiveExpression()
-  {buff.append(expr);}
-  (
-  (operator = <LSHIFT> | operator = <RSIGNEDSHIFT> | operator = <RUNSIGNEDSHIFT> ) expr2 = AdditiveExpression()
-  {
-    buff.append(operator.image);
-    buff.append(expr2);
-  }
-  )*
-  {return buff.toString();}
-}
-
-String AdditiveExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  expr = MultiplicativeExpression()
-  {buff.append(expr);}
-  (
-   ( operator = <PLUS> | operator = <MINUS> ) expr2 = MultiplicativeExpression()
-  {
-    buff.append(operator.image);
-    buff.append(expr2);
-  }
-   )*
-  {return buff.toString();}
-}
-
-String MultiplicativeExpression() :
-{
-  String expr;
-  Token operator;
-  String expr2;
-  StringBuffer buff = new StringBuffer();}
-{
-  expr = UnaryExpression()
-  {buff.append(expr);}
-  (
-  ( operator = <STAR> | operator = <SLASH> | operator = <REM> ) expr2 = UnaryExpression()
-  {
-    buff.append(operator.image);
-    buff.append(expr2);
-  }
-  )*
-  {return buff.toString();}
-}
-
-String UnaryExpression() :
-{
-  String expr;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  <AT> expr = UnaryExpression()
-  {return "@" + expr;}
-|
-  ( <PLUS> {buff.append("+");}| <MINUS> {buff.append("-");}) expr = UnaryExpression()
-  {
-    buff.append(expr);
-    return buff.toString();
-  }
-|
-  expr = PreIncrementExpression()
-  {return expr;}
-|
-  expr = PreDecrementExpression()
-  {return expr;}
-|
-  expr = UnaryExpressionNotPlusMinus()
-  {return buff.toString();}
-}
-
-String PreIncrementExpression() :
-{
-String expr;
-}
-{
-  <INCR> expr = PrimaryExpression()
-  {return "++"+expr;}
-}
-
-String PreDecrementExpression() :
-{
-String expr;
-}
-{
-  <DECR> expr = PrimaryExpression()
-  {return "--"+expr;}
-}
-
-String UnaryExpressionNotPlusMinus() :
-{
-  String expr;
-}
-{
-  <BANG> expr = UnaryExpression()
-  {return "!" + expr;}
-|
-  LOOKAHEAD( <LPAREN> Type() <RPAREN> )
-  expr = CastExpression()
-  {return expr;}
-|
-  expr = PostfixExpression()
-  {return expr;}
-|
-  expr = Literal()
-  {return expr;}
-|
-  <LPAREN> expr = Expression()<RPAREN>
-  {return "("+expr+")";}
-}
-
-String CastExpression() :
-{
-String type;
-String expr;
-}
-{
-  <LPAREN> type = Type() <RPAREN> expr = UnaryExpression()
-  {return "(" + type + ")" + expr;}
-}
-
-String PostfixExpression() :
-{
-  String expr;
-  Token operator = null;
-}
-{
-  expr = PrimaryExpression() [ operator = <INCR> | operator = <DECR> ]
-  {
-    if (operator == null) {
-      return expr;
-    }
-    return expr + operator.image;
-  }
-}
-
-String PrimaryExpression() :
-{
-  Token identifier;
-  String expr;
-  StringBuffer buff = new StringBuffer();
-}
-{
-  LOOKAHEAD(2)
-  identifier = <IDENTIFIER> <STATICCLASSACCESS> expr = ClassIdentifier()
-  {buff.append(identifier.image).append("::").append(expr);}
-  (
-  expr = PrimarySuffix()
-  {buff.append(expr);}
-  )*
-  {return buff.toString();}
-|
-  expr = PrimaryPrefix()
-  {buff.append(expr);}
-  (
-  expr = PrimarySuffix()
-  {buff.append(expr);}
-  )*
-  {return buff.toString();}
-|
-  <ARRAY> expr = ArrayInitializer()
-  {return "array" + expr;}
-}
-
-String PrimaryPrefix() :
-{
-  String expr;
-  Token token = null;
-}
-{
-  token = <IDENTIFIER>
-  {return token.image;}
-|
-  [token = <BIT_AND>] <NEW> expr = ClassIdentifier()
-  {
-    if (token == null) {
-      return "new " + expr;
-    }
-    return "new " + expr;
-  }
-|  
-  expr = VariableDeclaratorId()
-  {return expr;}
-}
-
-String ClassIdentifier():
-{
-  String expr;
-  Token token;
-}
-{
-  token = <IDENTIFIER>
-  {return token.image;}
-|
-  expr = VariableDeclaratorId()
-  {return expr;}
-}
-
-String PrimarySuffix() :
-{
-  String expr;
-}
-{
-  expr = Arguments()
-  {return expr;}
-|
-  expr = VariableSuffix()
-  {return expr;}
-}
-
-String VariableSuffix() :
-{
-  String expr = null;
-}
-{
-  <CLASSACCESS> expr = VariableName()
-  {return "->" + expr;}
-| 
-  <LBRACKET> [ expr = Expression() ] <RBRACKET>
-  {
-    if(expr == null) {
-      return "[]";
-    }
-    return "[" + expr + "]";
-  }
-}
-
-String Literal() :
-{
-  String expr;
-  Token token;
-}
-{
-  token = <INTEGER_LITERAL>
-  {return token.image;}
-|
-  token = <FLOATING_POINT_LITERAL>
-  {return token.image;}
-|
-  try {
-    token = <STRING_LITERAL>
-  {return token.image;}
-  } catch (TokenMgrError e) {
-    errorMessage = "unterminated string";
-    errorLevel   = ERROR;
-    throw generateParseException();
-  }
-|
-  expr = BooleanLiteral()
-  {return expr;}
-|
-  expr = NullLiteral()
-  {return expr;}
-}
-
-String BooleanLiteral() :
-{}
-{
-  <TRUE>
-  {return "true";}
-|
-  <FALSE>
-  {return "false";}
-}
-
-String NullLiteral() :
-{}
-{
-  <NULL>
-  {return "null";}
-}
-
-String Arguments() :
-{
-String expr = null;
-}
-{
-  <LPAREN> [ expr = ArgumentList() ]
-  try {
-    <RPAREN>
-  } catch (ParseException e) {
-    errorMessage = "')' expected to close the argument list";
-    errorLevel   = ERROR;
-    throw e;
-  }
-  {
-  if (expr == null) {
-    return "()";
-  }
-  return "(" + expr + ")";
-  }
-}
-
-String ArgumentList() :
-{
-String expr;
-StringBuffer buff = new StringBuffer();
-}
-{
-  expr = Expression()
-  {buff.append(expr);}
-  ( <COMMA>
-      try {
-        expr = Expression()
-      } catch (ParseException e) {
-        errorMessage = "expression expected after a comma in argument list";
-        errorLevel   = ERROR;
-        throw e;
-      }
-    {
-      buff.append(",").append("expr");
-    }
-   )*
-   {return buff.toString();}
-}
-
-/*
- * Statement syntax follows.
- */
-
-void Statement() :
-{}
-{
-  LOOKAHEAD(2)
-  Expression()  (<SEMICOLON> | "?>")
-|
-  LOOKAHEAD(2)
-  LabeledStatement()
-|
-  Block()
-|
-  EmptyStatement()
-|
-  StatementExpression()
-  try {
-    <SEMICOLON>
-  } catch (ParseException e) {
-    errorMessage = "';' expected after expression";
-    errorLevel   = ERROR;
-    throw e;
-  }
-|
-  SwitchStatement()
-|
-  IfStatement()
-|
-  WhileStatement()
-|
-  DoStatement()
-|
-  ForStatement()
-|
-  BreakStatement()
-|
-  ContinueStatement()
-|
-  ReturnStatement()
-|
-  EchoStatement()
-|
-  IncludeStatement()
-|
-  StaticStatement()
-|
-  GlobalStatement()
-}
-
-void IncludeStatement() :
-{}
-{
-  <REQUIRE> Expression() (<SEMICOLON> | "?>")
-|
-  <REQUIRE_ONCE> Expression() (<SEMICOLON> | "?>")
-|
-  <INCLUDE> Expression() (<SEMICOLON> | "?>")
-|
-  <INCLUDE_ONCE> Expression() (<SEMICOLON> | "?>")
-}
-
-String PrintExpression() :
-{
-  StringBuffer buff = new StringBuffer("print ");
-  String expr;
-}
-{
-  <PRINT> expr = Expression()
-  {
-    buff.append(expr);
-    return buff.toString();
-  }
-}
-
-void EchoStatement() :
-{}
-{
-  <ECHO> Expression() (<COMMA> Expression())*
-  try {
-    (<SEMICOLON> | "?>")
-  } catch (ParseException e) {
-    errorMessage = "';' expected after 'echo' statement";
-    errorLevel   = ERROR;
-    throw e;
-  }
-}
-
-void GlobalStatement() :
-{}
-{
-  <GLOBAL> VariableDeclaratorId() (<COMMA> VariableDeclaratorId())* (<SEMICOLON> | "?>")
-}
-
-void StaticStatement() :
-{}
-{
-  <STATIC> VariableDeclarator() (<COMMA> VariableDeclarator())* (<SEMICOLON> | "?>")
-}
-
-void LabeledStatement() :
-{}
-{
-  <IDENTIFIER> <COLON> Statement()
-}
-
-void Block() :
-{}
-{
-  <LBRACE> ( BlockStatement() )* <RBRACE>
-}
-
-void BlockStatement() :
-{}
-{
-  Statement()
-|
-  ClassDeclaration()
-|
-  MethodDeclaration()
-}
-
-void LocalVariableDeclaration() :
-{}
-{
-  VariableDeclarator() ( <COMMA> VariableDeclarator() )*
-}
-
-void EmptyStatement() :
-{}
-{
-  <SEMICOLON>
-}
-
-void StatementExpression() :
-/*
- * The last expansion of this production accepts more than the legal
- * Java expansions for StatementExpression.  This expansion does not
- * use PostfixExpression for performance reasons.
- */
-{}
-{
-  PreIncrementExpression()
-|
-  PreDecrementExpression()
-|
-  PrimaryExpression()
-  [
-   <INCR>
-  |
-    <DECR>
-  |
-    AssignmentOperator() Expression()
-  ]
-}
-
-void SwitchStatement() :
-{}
-{
-  <SWITCH> <LPAREN> Expression() <RPAREN> <LBRACE>
-    ( SwitchLabel() ( BlockStatement() )* )*
-  <RBRACE>
-}
-
-void SwitchLabel() :
-{}
-{
-  <CASE> Expression() <COLON>
-|
-  <_DEFAULT> <COLON>
-}
-
-void IfStatement() :
-/*
- * The disambiguating algorithm of JavaCC automatically binds dangling
- * else's to the innermost if statement.  The LOOKAHEAD specification
- * is to tell JavaCC that we know what we are doing.
- */
-{}
-{
-  <IF> Condition("if") Statement() ( LOOKAHEAD(1) ElseIfStatement() )* [ LOOKAHEAD(1) <ELSE> Statement() ]
-}
-
-void Condition(String keyword) :
-{}
-{
-  try {
-    <LPAREN>
-  } catch (ParseException e) {
-    errorMessage = "'(' expected after " + keyword + " keyword";
-    errorLevel   = ERROR;
-    throw e;
-  }
-  Expression()
-  try {
-     <RPAREN>
-  } catch (ParseException e) {
-    errorMessage = "')' expected after " + keyword + " keyword";
-    errorLevel   = ERROR;
-    throw e;
-  }
-}
-
-void ElseIfStatement() :
-{}
-{
-  <ELSEIF> Condition("elseif") Statement()
-}
-
-void WhileStatement() :
-{}
-{
-  <WHILE> Condition("while") WhileStatement0()
-}
-
-void WhileStatement0() :
-{}
-{
-  <COLON> (Statement())* <ENDWHILE> (<SEMICOLON> | "?>")
-|
-  Statement()
-}
-
-void DoStatement() :
-{}
-{
-  <DO> Statement() <WHILE> Condition("while") (<SEMICOLON> | "?>")
-}
-
-void ForStatement() :
-{}
-{
-  <FOR> <LPAREN> [ ForInit() ] <SEMICOLON> [ Expression() ] <SEMICOLON> [ ForUpdate() ] <RPAREN> Statement()
-}
-
-void ForInit() :
-{}
-{
-  LOOKAHEAD(LocalVariableDeclaration())
-  LocalVariableDeclaration()
-|
-  StatementExpressionList()
-}
-
-void StatementExpressionList() :
-{}
-{
-  StatementExpression() ( <COMMA> StatementExpression() )*
-}
-
-void ForUpdate() :
-{}
-{
-  StatementExpressionList()
-}
-
-void BreakStatement() :
-{}
-{
-  <BREAK> [ <IDENTIFIER> ] <SEMICOLON>
-}
-
-void ContinueStatement() :
-{}
-{
-  <CONTINUE> [ <IDENTIFIER> ] <SEMICOLON>
-}
-
-void ReturnStatement() :
-{}
-{
-  <RETURN> [ Expression() ] <SEMICOLON>
-}
\ No newline at end of file