1 /***********************************************************************************************************************************
 
   2  * Copyright (c) 2002 www.phpeclipse.de All rights reserved. This program and the accompanying material are made available under the
 
   3  * terms of the Common Public License v1.0 which accompanies this distribution, and is available at
 
   4  * http://www.eclipse.org/legal/cpl-v10.html
 
   6  * Contributors: www.phpeclipse.de
 
   7  **********************************************************************************************************************************/
 
   8 package net.sourceforge.phpdt.internal.compiler.parser;
 
  10 import java.util.ArrayList;
 
  11 import java.util.HashMap;
 
  12 import java.util.HashSet;
 
  14 import net.sourceforge.phpdt.core.compiler.CharOperation;
 
  15 import net.sourceforge.phpdt.core.compiler.ITerminalSymbols;
 
  16 import net.sourceforge.phpdt.core.compiler.InvalidInputException;
 
  17 import net.sourceforge.phpdt.internal.compiler.ast.AND_AND_Expression;
 
  18 import net.sourceforge.phpdt.internal.compiler.ast.ASTNode;
 
  19 import net.sourceforge.phpdt.internal.compiler.ast.AbstractMethodDeclaration;
 
  20 import net.sourceforge.phpdt.internal.compiler.ast.BinaryExpression;
 
  21 import net.sourceforge.phpdt.internal.compiler.ast.Block;
 
  22 import net.sourceforge.phpdt.internal.compiler.ast.BreakStatement;
 
  23 import net.sourceforge.phpdt.internal.compiler.ast.CompilationUnitDeclaration;
 
  24 import net.sourceforge.phpdt.internal.compiler.ast.ConditionalExpression;
 
  25 import net.sourceforge.phpdt.internal.compiler.ast.ContinueStatement;
 
  26 import net.sourceforge.phpdt.internal.compiler.ast.EqualExpression;
 
  27 import net.sourceforge.phpdt.internal.compiler.ast.Expression;
 
  28 import net.sourceforge.phpdt.internal.compiler.ast.FieldDeclaration;
 
  29 import net.sourceforge.phpdt.internal.compiler.ast.FieldReference;
 
  30 import net.sourceforge.phpdt.internal.compiler.ast.IfStatement;
 
  31 import net.sourceforge.phpdt.internal.compiler.ast.ImportReference;
 
  32 import net.sourceforge.phpdt.internal.compiler.ast.InstanceOfExpression;
 
  33 import net.sourceforge.phpdt.internal.compiler.ast.MethodDeclaration;
 
  34 import net.sourceforge.phpdt.internal.compiler.ast.OR_OR_Expression;
 
  35 import net.sourceforge.phpdt.internal.compiler.ast.OperatorIds;
 
  36 import net.sourceforge.phpdt.internal.compiler.ast.ReturnStatement;
 
  37 import net.sourceforge.phpdt.internal.compiler.ast.SingleTypeReference;
 
  38 import net.sourceforge.phpdt.internal.compiler.ast.Statement;
 
  39 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteral;
 
  40 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralDQ;
 
  41 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralSQ;
 
  42 import net.sourceforge.phpdt.internal.compiler.ast.TypeDeclaration;
 
  43 import net.sourceforge.phpdt.internal.compiler.ast.TypeReference;
 
  44 import net.sourceforge.phpdt.internal.compiler.impl.CompilerOptions;
 
  45 import net.sourceforge.phpdt.internal.compiler.impl.ReferenceContext;
 
  46 import net.sourceforge.phpdt.internal.compiler.lookup.CompilerModifiers;
 
  47 import net.sourceforge.phpdt.internal.compiler.lookup.TypeConstants;
 
  48 import net.sourceforge.phpdt.internal.compiler.problem.ProblemReporter;
 
  49 import net.sourceforge.phpdt.internal.compiler.problem.ProblemSeverities;
 
  50 import net.sourceforge.phpdt.internal.compiler.util.Util;
 
  51 import net.sourceforge.phpdt.internal.ui.util.PHPFileUtil;
 
  52 import net.sourceforge.phpeclipse.builder.IdentifierIndexManager;
 
  53 import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
 
  55 import org.eclipse.core.resources.IFile;
 
  56 import org.eclipse.core.resources.IProject;
 
  57 import org.eclipse.core.resources.IResource;
 
  58 import org.eclipse.core.runtime.IPath;
 
  60 public class Parser implements ITerminalSymbols, CompilerModifiers, ParserBasicInformation {
 
  61         protected final static int StackIncrement = 255;
 
  63         protected int stateStackTop;
 
  65         // protected int[] stack = new int[StackIncrement];
 
  67         public int firstToken; // handle for multiple parsing goals
 
  69         public int lastAct; // handle for multiple parsing goals
 
  71         // protected RecoveredElement currentElement;
 
  73         public static boolean VERBOSE_RECOVERY = false;
 
  75         protected boolean diet = false; // tells the scanner to jump over some
 
  78          * the PHP token scanner
 
  80         public Scanner scanner;
 
  84         protected int modifiers;
 
  86         protected int modifiersSourceStart;
 
  88         protected Parser(ProblemReporter problemReporter) {
 
  89                 this.problemReporter = problemReporter;
 
  90                 this.options = problemReporter.options;
 
  91                 this.token = TokenNameEOF;
 
  92                 this.initializeScanner();
 
  95         public void setFileToParse(IFile fileToParse) {
 
  96                 this.token = TokenNameEOF;
 
  97                 this.initializeScanner();
 
 101          * ClassDeclaration Constructor.
 
 105          *          Description of Parameter
 
 108         public Parser(IFile fileToParse) {
 
 109                 // if (keywordMap == null) {
 
 110                 // keywordMap = new HashMap();
 
 111                 // for (int i = 0; i < PHP_KEYWORS.length; i++) {
 
 112                 // keywordMap.put(PHP_KEYWORS[i], new Integer(PHP_KEYWORD_TOKEN[i]));
 
 115                 // this.currentPHPString = 0;
 
 116                 // PHPParserSuperclass.fileToParse = fileToParse;
 
 117                 // this.phpList = null;
 
 118                 this.includesList = null;
 
 120                 this.token = TokenNameEOF;
 
 122                 // this.rowCount = 1;
 
 123                 // this.columnCount = 0;
 
 124                 // this.phpEnd = false;
 
 126                 this.initializeScanner();
 
 129         public void initializeScanner() {
 
 130                 this.scanner = new Scanner(false /* comment */, false /* whitespace */, this.options
 
 131                                 .getSeverity(CompilerOptions.NonExternalizedString) != ProblemSeverities.Ignore /* nls */, false, false,
 
 132                                 this.options.taskTags/* taskTags */, this.options.taskPriorites/* taskPriorities */, true/* isTaskCaseSensitive */);
 
 136          * Create marker for the parse error
 
 138         // private void setMarker(String message, int charStart, int charEnd, int
 
 140         // setMarker(fileToParse, message, charStart, charEnd, errorLevel);
 
 143          * This method will throw the SyntaxError. It will add the good lines and
 
 144          * columns to the Error
 
 148          * @throws SyntaxError
 
 151         private void throwSyntaxError(String error) {
 
 152                 int problemStartPosition = scanner.getCurrentTokenStartPosition();
 
 153                 int problemEndPosition = scanner.getCurrentTokenEndPosition() + 1;
 
 154                 if (scanner.source.length <= problemEndPosition && problemEndPosition > 0) {
 
 155                         problemEndPosition = scanner.source.length - 1;
 
 156                         if (problemStartPosition > 0 && problemStartPosition >= problemEndPosition && problemEndPosition > 0) {
 
 157                                 problemStartPosition = problemEndPosition - 1;
 
 160                 throwSyntaxError(error, problemStartPosition, problemEndPosition);
 
 164          * This method will throw the SyntaxError. It will add the good lines and
 
 165          * columns to the Error
 
 169          * @throws SyntaxError
 
 172         // private void throwSyntaxError(String error, int startRow) {
 
 173         // throw new SyntaxError(startRow, 0, " ", error);
 
 175         private void throwSyntaxError(String error, int problemStartPosition, int problemEndPosition) {
 
 176                 if (referenceContext != null) {
 
 177                         problemReporter.phpParsingError(new String[] { error }, problemStartPosition, problemEndPosition, referenceContext,
 
 178                                         compilationUnit.compilationResult);
 
 180                 throw new SyntaxError(1, 0, " ", error);
 
 183         private void reportSyntaxError(String error) {
 
 184                 int problemStartPosition = scanner.getCurrentTokenStartPosition();
 
 185                 int problemEndPosition = scanner.getCurrentTokenEndPosition();
 
 186                 reportSyntaxError(error, problemStartPosition, problemEndPosition + 1);
 
 189         private void reportSyntaxError(String error, int problemStartPosition, int problemEndPosition) {
 
 190                 if (referenceContext != null) {
 
 191                         problemReporter.phpParsingError(new String[] { error }, problemStartPosition, problemEndPosition, referenceContext,
 
 192                                         compilationUnit.compilationResult);
 
 196         // private void reportSyntaxWarning(String error, int problemStartPosition,
 
 197         // int problemEndPosition) {
 
 198         // if (referenceContext != null) {
 
 199         // problemReporter.phpParsingWarning(new String[] { error },
 
 200         // problemStartPosition, problemEndPosition, referenceContext,
 
 201         // compilationUnit.compilationResult);
 
 206          * gets the next token from input
 
 208         private void getNextToken() {
 
 210                         token = scanner.getNextToken();
 
 212                                 int currentEndPosition = scanner.getCurrentTokenEndPosition();
 
 213                                 int currentStartPosition = scanner.getCurrentTokenStartPosition();
 
 214                                 System.out.print(currentStartPosition + "," + currentEndPosition + ": ");
 
 215                                 System.out.println(scanner.toStringAction(token));
 
 217                 } catch (InvalidInputException e) {
 
 218                         token = TokenNameERROR;
 
 219                         String detailedMessage = e.getMessage();
 
 221                         if (detailedMessage == Scanner.UNTERMINATED_STRING) {
 
 222                                 throwSyntaxError("Unterminated string.");
 
 223                         } else if (detailedMessage == Scanner.UNTERMINATED_COMMENT) {
 
 224                                 throwSyntaxError("Unterminated commment.");
 
 230         public void init(String s) {
 
 232                 this.token = TokenNameEOF;
 
 233                 this.includesList = new ArrayList();
 
 235                 // this.rowCount = 1;
 
 236                 // this.columnCount = 0;
 
 237                 // this.phpEnd = false;
 
 238                 // this.phpMode = false;
 
 239                 /* scanner initialization */
 
 240                 scanner.setSource(s.toCharArray());
 
 241                 scanner.setPHPMode(false);
 
 245         protected void initialize(boolean phpMode) {
 
 246                 initialize(phpMode, null);
 
 249         protected void initialize(boolean phpMode, IdentifierIndexManager indexManager) {
 
 250                 compilationUnit = null;
 
 251                 referenceContext = null;
 
 252                 this.includesList = new ArrayList();
 
 253                 // this.indexManager = indexManager;
 
 255                 this.token = TokenNameEOF;
 
 257                 // this.rowCount = 1;
 
 258                 // this.columnCount = 0;
 
 259                 // this.phpEnd = false;
 
 260                 // this.phpMode = phpMode;
 
 261                 scanner.setPHPMode(phpMode);
 
 266          * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
 
 269         public void parse(String s) {
 
 274          * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
 
 277         public void parse(String s, HashMap variables) {
 
 278                 fMethodVariables = variables;
 
 279                 fStackUnassigned = new ArrayList();
 
 285          * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
 
 288         protected void parse() {
 
 289                 if (scanner.compilationUnit != null) {
 
 290                         IResource resource = scanner.compilationUnit.getResource();
 
 291                         if (resource != null && resource instanceof IFile) {
 
 292                                 // set the package name
 
 293                                 consumePackageDeclarationName((IFile) resource);
 
 299                                 if (token != TokenNameEOF && token != TokenNameERROR) {
 
 302                                 if (token != TokenNameEOF) {
 
 303                                         if (token == TokenNameERROR) {
 
 304                                                 throwSyntaxError("Scanner error (Found unknown token: " + scanner.toStringAction(token) + ")");
 
 306                                         if (token == TokenNameRPAREN) {
 
 307                                                 throwSyntaxError("Too many closing ')'; end-of-file not reached.");
 
 309                                         if (token == TokenNameRBRACE) {
 
 310                                                 throwSyntaxError("Too many closing '}'; end-of-file not reached.");
 
 312                                         if (token == TokenNameRBRACKET) {
 
 313                                                 throwSyntaxError("Too many closing ']'; end-of-file not reached.");
 
 315                                         if (token == TokenNameLPAREN) {
 
 316                                                 throwSyntaxError("Read character '('; end-of-file not reached.");
 
 318                                         if (token == TokenNameLBRACE) {
 
 319                                                 throwSyntaxError("Read character '{';  end-of-file not reached.");
 
 321                                         if (token == TokenNameLBRACKET) {
 
 322                                                 throwSyntaxError("Read character '[';  end-of-file not reached.");
 
 324                                         throwSyntaxError("End-of-file not reached.");
 
 327                         } catch (SyntaxError syntaxError) {
 
 328                                 // syntaxError.printStackTrace();
 
 337          * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
 
 340         public void parseFunction(String s, HashMap variables) {
 
 342                 scanner.phpMode = true;
 
 343                 parseFunction(variables);
 
 347          * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
 
 350         protected void parseFunction(HashMap variables) {
 
 352                 boolean hasModifiers = member_modifiers();
 
 353                 if (token == TokenNamefunction) {
 
 355                                 checkAndSetModifiers(AccPublic);
 
 357                         this.fMethodVariables = variables;
 
 359                         MethodDeclaration methodDecl = new MethodDeclaration(null);
 
 360                         methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
 
 361                         methodDecl.modifiers = this.modifiers;
 
 362                         methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
 
 365                                 functionDefinition(methodDecl);
 
 366                         } catch (SyntaxError sytaxErr1) {
 
 369                                 int sourceEnd = methodDecl.sourceEnd;
 
 370                                 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
 
 371                                         sourceEnd = methodDecl.declarationSourceStart + 1;
 
 373                                 methodDecl.sourceEnd = sourceEnd;
 
 374                                 methodDecl.declarationSourceEnd = sourceEnd;
 
 379         protected CompilationUnitDeclaration endParse(int act) {
 
 383                 // if (currentElement != null) {
 
 384                 // currentElement.topElement().updateParseTree();
 
 385                 // if (VERBOSE_RECOVERY) {
 
 386                 // System.out.print(Util.bind("parser.syntaxRecovery")); //$NON-NLS-1$
 
 387                 // System.out.println("--------------------------"); //$NON-NLS-1$
 
 388                 // System.out.println(compilationUnit);
 
 389                 // System.out.println("----------------------------------"); //$NON-NLS-1$
 
 392                 if (diet & VERBOSE_RECOVERY) {
 
 393                         System.out.print(Util.bind("parser.regularParse")); //$NON-NLS-1$
 
 394                         System.out.println("--------------------------"); //$NON-NLS-1$
 
 395                         System.out.println(compilationUnit);
 
 396                         System.out.println("----------------------------------"); //$NON-NLS-1$
 
 399                 if (scanner.recordLineSeparator) {
 
 400                         compilationUnit.compilationResult.lineSeparatorPositions = scanner.getLineEnds();
 
 402                 if (scanner.taskTags != null) {
 
 403                         for (int i = 0; i < scanner.foundTaskCount; i++) {
 
 404                                 problemReporter().task(new String(scanner.foundTaskTags[i]), new String(scanner.foundTaskMessages[i]),
 
 405                                                 scanner.foundTaskPriorities[i] == null ? null : new String(scanner.foundTaskPriorities[i]),
 
 406                                                 scanner.foundTaskPositions[i][0], scanner.foundTaskPositions[i][1]);
 
 409                 compilationUnit.imports = new ImportReference[includesList.size()];
 
 410                 for (int i = 0; i < includesList.size(); i++) {
 
 411                         compilationUnit.imports[i] = (ImportReference) includesList.get(i);
 
 413                 return compilationUnit;
 
 416         private Block statementList() {
 
 417                 boolean branchStatement = false;
 
 419                 int blockStart = scanner.getCurrentTokenStartPosition();
 
 420                 ArrayList blockStatements = new ArrayList();
 
 423                                 statement = statement();
 
 424                                 blockStatements.add(statement);
 
 425                                 if (token == TokenNameEOF) {
 
 428                                 if (branchStatement && statement != null) {
 
 429                                         // reportSyntaxError("Unreachable code", statement.sourceStart,
 
 430                                         // statement.sourceEnd);
 
 431                                         problemReporter.unreachableCode(new String(scanner.getCurrentIdentifierSource()), statement.sourceStart,
 
 432                                                         statement.sourceEnd, referenceContext, compilationUnit.compilationResult);
 
 434                                 if ((token == TokenNameRBRACE) || (token == TokenNamecase) || (token == TokenNamedefault) || (token == TokenNameelse)
 
 435                                                 || (token == TokenNameelseif) || (token == TokenNameendif) || (token == TokenNameendfor)
 
 436                                                 || (token == TokenNameendforeach) || (token == TokenNameendwhile) || (token == TokenNameendswitch)
 
 437                                                 || (token == TokenNameenddeclare) || (token == TokenNameEOF) || (token == TokenNameERROR)) {
 
 438                                         return createBlock(blockStart, blockStatements);
 
 440                                 branchStatement = checkUnreachableStatements(statement);
 
 441                         } catch (SyntaxError sytaxErr1) {
 
 442                                 // if an error occured,
 
 443                                 // try to find keywords
 
 444                                 // to parse the rest of the string
 
 445                                 boolean tokenize = scanner.tokenizeStrings;
 
 447                                         scanner.tokenizeStrings = true;
 
 450                                         while (token != TokenNameEOF) {
 
 451                                                 if ((token == TokenNameRBRACE) || (token == TokenNamecase) || (token == TokenNamedefault) || (token == TokenNameelse)
 
 452                                                                 || (token == TokenNameelseif) || (token == TokenNameendif) || (token == TokenNameendfor)
 
 453                                                                 || (token == TokenNameendforeach) || (token == TokenNameendwhile) || (token == TokenNameendswitch)
 
 454                                                                 || (token == TokenNameenddeclare) || (token == TokenNameEOF) || (token == TokenNameERROR)) {
 
 455                                                         return createBlock(blockStart, blockStatements);
 
 457                                                 if (token == TokenNameif || token == TokenNameswitch || token == TokenNamefor || token == TokenNamewhile
 
 458                                                                 || token == TokenNamedo || token == TokenNameforeach || token == TokenNamecontinue || token == TokenNamebreak
 
 459                                                                 || token == TokenNamereturn || token == TokenNameexit || token == TokenNameecho || token == TokenNameglobal
 
 460                                                                 || token == TokenNamestatic || token == TokenNameunset || token == TokenNamefunction || token == TokenNamedeclare
 
 461                                                                 || token == TokenNametry || token == TokenNamecatch || token == TokenNamethrow || token == TokenNamefinal
 
 462                                                                 || token == TokenNameabstract || token == TokenNameclass || token == TokenNameinterface) {
 
 465                                                 // System.out.println(scanner.toStringAction(token));
 
 467                                                 // System.out.println(scanner.toStringAction(token));
 
 469                                         if (token == TokenNameEOF) {
 
 473                                         scanner.tokenizeStrings = tokenize;
 
 483         private boolean checkUnreachableStatements(Statement statement) {
 
 484                 if (statement instanceof ReturnStatement || statement instanceof ContinueStatement || statement instanceof BreakStatement) {
 
 486                 } else if (statement instanceof IfStatement && ((IfStatement) statement).checkUnreachable) {
 
 494          * @param blockStatements
 
 497         private Block createBlock(int blockStart, ArrayList blockStatements) {
 
 498                 int blockEnd = scanner.getCurrentTokenEndPosition();
 
 499                 Block b = Block.EmptyWith(blockStart, blockEnd);
 
 500                 b.statements = new Statement[blockStatements.size()];
 
 501                 blockStatements.toArray(b.statements);
 
 505         private void functionBody(MethodDeclaration methodDecl) {
 
 506                 // '{' [statement-list] '}'
 
 507                 if (token == TokenNameLBRACE) {
 
 510                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
 511                         throwSyntaxError("'{' expected in compound-statement.");
 
 513                 if (token != TokenNameRBRACE) {
 
 516                 if (token == TokenNameRBRACE) {
 
 517                         methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
 
 520                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
 521                         throwSyntaxError("'}' expected in compound-statement.");
 
 525         private Statement statement() {
 
 526                 Statement statement = null;
 
 527                 Expression expression;
 
 528                 int sourceStart = scanner.getCurrentTokenStartPosition();
 
 530                 if (token == TokenNameif) {
 
 531                         // T_IF '(' expr ')' statement elseif_list else_single
 
 532                         // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
 
 533                         // new_else_single T_ENDIF ';'
 
 535                         if (token == TokenNameLPAREN) {
 
 538                                 throwSyntaxError("'(' expected after 'if' keyword.");
 
 541                         if (token == TokenNameRPAREN) {
 
 544                                 throwSyntaxError("')' expected after 'if' condition.");
 
 546                         // create basic IfStatement
 
 547                         IfStatement ifStatement = new IfStatement(expression, null, null, sourceStart, -1);
 
 548                         if (token == TokenNameCOLON) {
 
 550                                 ifStatementColon(ifStatement);
 
 552                                 ifStatement(ifStatement);
 
 555                 } else if (token == TokenNameswitch) {
 
 557                         if (token == TokenNameLPAREN) {
 
 560                                 throwSyntaxError("'(' expected after 'switch' keyword.");
 
 563                         if (token == TokenNameRPAREN) {
 
 566                                 throwSyntaxError("')' expected after 'switch' condition.");
 
 570                 } else if (token == TokenNamefor) {
 
 572                         if (token == TokenNameLPAREN) {
 
 575                                 throwSyntaxError("'(' expected after 'for' keyword.");
 
 577                         if (token == TokenNameSEMICOLON) {
 
 581                                 if (token == TokenNameSEMICOLON) {
 
 584                                         throwSyntaxError("';' expected after 'for'.");
 
 587                         if (token == TokenNameSEMICOLON) {
 
 591                                 if (token == TokenNameSEMICOLON) {
 
 594                                         throwSyntaxError("';' expected after 'for'.");
 
 597                         if (token == TokenNameRPAREN) {
 
 601                                 if (token == TokenNameRPAREN) {
 
 604                                         throwSyntaxError("')' expected after 'for'.");
 
 609                 } else if (token == TokenNamewhile) {
 
 611                         if (token == TokenNameLPAREN) {
 
 614                                 throwSyntaxError("'(' expected after 'while' keyword.");
 
 617                         if (token == TokenNameRPAREN) {
 
 620                                 throwSyntaxError("')' expected after 'while' condition.");
 
 624                 } else if (token == TokenNamedo) {
 
 626                         if (token == TokenNameLBRACE) {
 
 628                                 if (token != TokenNameRBRACE) {
 
 631                                 if (token == TokenNameRBRACE) {
 
 634                                         throwSyntaxError("'}' expected after 'do' keyword.");
 
 639                         if (token == TokenNamewhile) {
 
 641                                 if (token == TokenNameLPAREN) {
 
 644                                         throwSyntaxError("'(' expected after 'while' keyword.");
 
 647                                 if (token == TokenNameRPAREN) {
 
 650                                         throwSyntaxError("')' expected after 'while' condition.");
 
 653                                 throwSyntaxError("'while' expected after 'do' keyword.");
 
 655                         if (token == TokenNameSEMICOLON) {
 
 658                                 if (token != TokenNameINLINE_HTML) {
 
 659                                         throwSyntaxError("';' expected after do-while statement.");
 
 664                 } else if (token == TokenNameforeach) {
 
 666                         if (token == TokenNameLPAREN) {
 
 669                                 throwSyntaxError("'(' expected after 'foreach' keyword.");
 
 672                         if (token == TokenNameas) {
 
 675                                 throwSyntaxError("'as' expected after 'foreach' exxpression.");
 
 679                         foreach_optional_arg();
 
 680                         if (token == TokenNameEQUAL_GREATER) {
 
 682                                 variable(false, false);
 
 684                         if (token == TokenNameRPAREN) {
 
 687                                 throwSyntaxError("')' expected after 'foreach' expression.");
 
 691                 } else if (token == TokenNamebreak) {
 
 694                         if (token != TokenNameSEMICOLON) {
 
 697                         if (token == TokenNameSEMICOLON) {
 
 698                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 701                                 if (token != TokenNameINLINE_HTML) {
 
 702                                         throwSyntaxError("';' expected after 'break'.");
 
 704                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 707                         return new BreakStatement(null, sourceStart, sourceEnd);
 
 708                 } else if (token == TokenNamecontinue) {
 
 711                         if (token != TokenNameSEMICOLON) {
 
 714                         if (token == TokenNameSEMICOLON) {
 
 715                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 718                                 if (token != TokenNameINLINE_HTML) {
 
 719                                         throwSyntaxError("';' expected after 'continue'.");
 
 721                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 724                         return new ContinueStatement(null, sourceStart, sourceEnd);
 
 725                 } else if (token == TokenNamereturn) {
 
 728                         if (token != TokenNameSEMICOLON) {
 
 731                         if (token == TokenNameSEMICOLON) {
 
 732                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 735                                 if (token != TokenNameINLINE_HTML) {
 
 736                                         throwSyntaxError("';' expected after 'return'.");
 
 738                                 sourceEnd = scanner.getCurrentTokenEndPosition();
 
 741                         return new ReturnStatement(expression, sourceStart, sourceEnd);
 
 742                 } else if (token == TokenNameecho) {
 
 745                         if (token == TokenNameSEMICOLON) {
 
 748                                 if (token != TokenNameINLINE_HTML) {
 
 749                                         throwSyntaxError("';' expected after 'echo' statement.");
 
 754                 } else if (token == TokenNameINLINE_HTML) {
 
 757                 } else if (token == TokenNameglobal) {
 
 760                         if (token == TokenNameSEMICOLON) {
 
 763                                 if (token != TokenNameINLINE_HTML) {
 
 764                                         throwSyntaxError("';' expected after 'global' statement.");
 
 769                 } else if (token == TokenNamestatic) {
 
 772                         if (token == TokenNameSEMICOLON) {
 
 775                                 if (token != TokenNameINLINE_HTML) {
 
 776                                         throwSyntaxError("';' expected after 'static' statement.");
 
 781                 } else if (token == TokenNameunset) {
 
 783                         if (token == TokenNameLPAREN) {
 
 786                                 throwSyntaxError("'(' expected after 'unset' statement.");
 
 789                         if (token == TokenNameRPAREN) {
 
 792                                 throwSyntaxError("')' expected after 'unset' statement.");
 
 794                         if (token == TokenNameSEMICOLON) {
 
 797                                 if (token != TokenNameINLINE_HTML) {
 
 798                                         throwSyntaxError("';' expected after 'unset' statement.");
 
 803                 } else if (token == TokenNamefunction) {
 
 804                         MethodDeclaration methodDecl = new MethodDeclaration(this.compilationUnit.compilationResult);
 
 805                         methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
 
 806                         methodDecl.modifiers = AccDefault;
 
 807                         methodDecl.type = MethodDeclaration.FUNCTION_DEFINITION;
 
 810                                 functionDefinition(methodDecl);
 
 812                                 sourceEnd = methodDecl.sourceEnd;
 
 813                                 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
 
 814                                         sourceEnd = methodDecl.declarationSourceStart + 1;
 
 816                                 methodDecl.declarationSourceEnd = sourceEnd;
 
 817                                 methodDecl.sourceEnd = sourceEnd;
 
 820                 } else if (token == TokenNamedeclare) {
 
 821                         // T_DECLARE '(' declare_list ')' declare_statement
 
 823                         if (token != TokenNameLPAREN) {
 
 824                                 throwSyntaxError("'(' expected in 'declare' statement.");
 
 828                         if (token != TokenNameRPAREN) {
 
 829                                 throwSyntaxError("')' expected in 'declare' statement.");
 
 834                 } else if (token == TokenNametry) {
 
 836                         if (token != TokenNameLBRACE) {
 
 837                                 throwSyntaxError("'{' expected in 'try' statement.");
 
 841                         if (token != TokenNameRBRACE) {
 
 842                                 throwSyntaxError("'}' expected in 'try' statement.");
 
 846                 } else if (token == TokenNamecatch) {
 
 848                         if (token != TokenNameLPAREN) {
 
 849                                 throwSyntaxError("'(' expected in 'catch' statement.");
 
 852                         fully_qualified_class_name();
 
 853                         if (token != TokenNameVariable) {
 
 854                                 throwSyntaxError("Variable expected in 'catch' statement.");
 
 858                         if (token != TokenNameRPAREN) {
 
 859                                 throwSyntaxError("')' expected in 'catch' statement.");
 
 862                         if (token != TokenNameLBRACE) {
 
 863                                 throwSyntaxError("'{' expected in 'catch' statement.");
 
 866                         if (token != TokenNameRBRACE) {
 
 868                                 if (token != TokenNameRBRACE) {
 
 869                                         throwSyntaxError("'}' expected in 'catch' statement.");
 
 873                         additional_catches();
 
 875                 } else if (token == TokenNamethrow) {
 
 878                         if (token == TokenNameSEMICOLON) {
 
 881                                 throwSyntaxError("';' expected after 'throw' exxpression.");
 
 884                 } else if (token == TokenNamefinal || token == TokenNameabstract || token == TokenNameclass || token == TokenNameinterface) {
 
 886                                 TypeDeclaration typeDecl = new TypeDeclaration(this.compilationUnit.compilationResult);
 
 887                                 typeDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
 
 888                                 typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
 
 889                                 typeDecl.name = new char[] { ' ' };
 
 890                                 // default super class
 
 891                                 typeDecl.superclass = new SingleTypeReference(TypeConstants.OBJECT, 0);
 
 892                                 compilationUnit.types.add(typeDecl);
 
 893                                 pushOnAstStack(typeDecl);
 
 894                                 unticked_class_declaration_statement(typeDecl);
 
 902                         // throwSyntaxError("Unexpected keyword '" + keyword + "'");
 
 903                 } else if (token == TokenNameLBRACE) {
 
 905                         if (token != TokenNameRBRACE) {
 
 906                                 statement = statementList();
 
 908                         if (token == TokenNameRBRACE) {
 
 912                                 throwSyntaxError("'}' expected.");
 
 915                         if (token != TokenNameSEMICOLON) {
 
 918                         if (token == TokenNameSEMICOLON) {
 
 922                                 if (token == TokenNameRBRACE) {
 
 923                                         reportSyntaxError("';' expected after expression (Found token: " + scanner.toStringAction(token) + ")");
 
 925                                         if (token != TokenNameINLINE_HTML && token != TokenNameEOF) {
 
 926                                                 throwSyntaxError("';' expected after expression (Found token: " + scanner.toStringAction(token) + ")");
 
 936         private void declare_statement() {
 
 938                 // | ':' inner_statement_list T_ENDDECLARE ';'
 
 940                 if (token == TokenNameCOLON) {
 
 942                         // TODO: implement inner_statement_list();
 
 944                         if (token != TokenNameenddeclare) {
 
 945                                 throwSyntaxError("'enddeclare' expected in 'declare' statement.");
 
 948                         if (token != TokenNameSEMICOLON) {
 
 949                                 throwSyntaxError("';' expected after 'enddeclare' keyword.");
 
 957         private void declare_list() {
 
 958                 // T_STRING '=' static_scalar
 
 959                 // | declare_list ',' T_STRING '=' static_scalar
 
 961                         if (token != TokenNameIdentifier) {
 
 962                                 throwSyntaxError("Identifier expected in 'declare' list.");
 
 965                         if (token != TokenNameEQUAL) {
 
 966                                 throwSyntaxError("'=' expected in 'declare' list.");
 
 970                         if (token != TokenNameCOMMA) {
 
 977         private void additional_catches() {
 
 978                 while (token == TokenNamecatch) {
 
 980                         if (token != TokenNameLPAREN) {
 
 981                                 throwSyntaxError("'(' expected in 'catch' statement.");
 
 984                         fully_qualified_class_name();
 
 985                         if (token != TokenNameVariable) {
 
 986                                 throwSyntaxError("Variable expected in 'catch' statement.");
 
 990                         if (token != TokenNameRPAREN) {
 
 991                                 throwSyntaxError("')' expected in 'catch' statement.");
 
 994                         if (token != TokenNameLBRACE) {
 
 995                                 throwSyntaxError("'{' expected in 'catch' statement.");
 
 998                         if (token != TokenNameRBRACE) {
 
1001                         if (token != TokenNameRBRACE) {
 
1002                                 throwSyntaxError("'}' expected in 'catch' statement.");
 
1008         private void foreach_variable() {
 
1011                 if (token == TokenNameAND) {
 
1017         private void foreach_optional_arg() {
 
1019                 // | T_DOUBLE_ARROW foreach_variable
 
1020                 if (token == TokenNameEQUAL_GREATER) {
 
1026         private void global_var_list() {
 
1028                 // global_var_list ',' global_var
 
1030                 HashSet set = peekVariableSet();
 
1033                         if (token != TokenNameCOMMA) {
 
1040         private void global_var(HashSet set) {
 
1044                 // | '$' '{' expr '}'
 
1045                 if (token == TokenNameVariable) {
 
1046                         if (fMethodVariables != null) {
 
1047                                 VariableInfo info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_GLOBAL_VAR);
 
1048                                 fMethodVariables.put(new String(scanner.getCurrentIdentifierSource()), info);
 
1050                         addVariableSet(set);
 
1052                 } else if (token == TokenNameDOLLAR) {
 
1054                         if (token == TokenNameLBRACE) {
 
1057                                 if (token != TokenNameRBRACE) {
 
1058                                         throwSyntaxError("'}' expected in global variable.");
 
1067         private void static_var_list() {
 
1069                 // static_var_list ',' T_VARIABLE
 
1070                 // | static_var_list ',' T_VARIABLE '=' static_scalar
 
1072                 // | T_VARIABLE '=' static_scalar,
 
1073                 HashSet set = peekVariableSet();
 
1075                         if (token == TokenNameVariable) {
 
1076                                 if (fMethodVariables != null) {
 
1077                                         VariableInfo info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_STATIC_VAR);
 
1078                                         fMethodVariables.put(new String(scanner.getCurrentIdentifierSource()), info);
 
1080                                 addVariableSet(set);
 
1082                                 if (token == TokenNameEQUAL) {
 
1086                                 if (token != TokenNameCOMMA) {
 
1096         private void unset_variables() {
 
1099                 // | unset_variables ',' unset_variable
 
1103                         variable(false, false);
 
1104                         if (token != TokenNameCOMMA) {
 
1111         private final void initializeModifiers() {
 
1113                 this.modifiersSourceStart = -1;
 
1116         private final void checkAndSetModifiers(int flag) {
 
1117                 this.modifiers |= flag;
 
1118                 if (this.modifiersSourceStart < 0)
 
1119                         this.modifiersSourceStart = this.scanner.startPosition;
 
1122         private void unticked_class_declaration_statement(TypeDeclaration typeDecl) {
 
1123                 initializeModifiers();
 
1124                 if (token == TokenNameinterface) {
 
1125                         // interface_entry T_STRING
 
1126                         // interface_extends_list
 
1127                         // '{' class_statement_list '}'
 
1128                         checkAndSetModifiers(AccInterface);
 
1130                         typeDecl.modifiers = this.modifiers;
 
1131                         typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
 
1132                         typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
 
1133                         if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
 
1134                                 typeDecl.name = scanner.getCurrentIdentifierSource();
 
1135                                 if (token > TokenNameKEYWORD) {
 
1136                                         problemReporter.phpKeywordWarning(new String[] { scanner.toStringAction(token) }, scanner.getCurrentTokenStartPosition(),
 
1137                                                         scanner.getCurrentTokenEndPosition(), referenceContext, compilationUnit.compilationResult);
 
1138                                         // throwSyntaxError("Don't use a keyword for interface declaration ["
 
1139                                         // + scanner.toStringAction(token) + "].",
 
1140                                         // typeDecl.sourceStart, typeDecl.sourceEnd);
 
1143                                 interface_extends_list(typeDecl);
 
1145                                 typeDecl.name = new char[] { ' ' };
 
1146                                 throwSyntaxError("Interface name expected after keyword 'interface'.", typeDecl.sourceStart, typeDecl.sourceEnd);
 
1150                         // class_entry_type T_STRING extends_from
 
1152                         // '{' class_statement_list'}'
 
1154                         typeDecl.modifiers = this.modifiers;
 
1155                         typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
 
1156                         typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
 
1158                         // identifier 'extends' identifier
 
1159                         if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
 
1160                                 typeDecl.name = scanner.getCurrentIdentifierSource();
 
1161                                 if (token > TokenNameKEYWORD) {
 
1162                                         problemReporter.phpKeywordWarning(new String[] { scanner.toStringAction(token) }, scanner.getCurrentTokenStartPosition(),
 
1163                                                         scanner.getCurrentTokenEndPosition(), referenceContext, compilationUnit.compilationResult);
 
1164                                         // throwSyntaxError("Don't use a keyword for class declaration [" +
 
1165                                         // scanner.toStringAction(token) + "].",
 
1166                                         // typeDecl.sourceStart, typeDecl.sourceEnd);
 
1171                                 // | T_EXTENDS fully_qualified_class_name
 
1172                                 if (token == TokenNameextends) {
 
1173                                         interface_extends_list(typeDecl);
 
1175                                         // if (token != TokenNameIdentifier) {
 
1176                                         // throwSyntaxError("Class name expected after keyword
 
1178                                         // scanner.getCurrentTokenStartPosition(), scanner
 
1179                                         // .getCurrentTokenEndPosition());
 
1182                                 implements_list(typeDecl);
 
1184                                 typeDecl.name = new char[] { ' ' };
 
1185                                 throwSyntaxError("Class name expected after keyword 'class'.", typeDecl.sourceStart, typeDecl.sourceEnd);
 
1189                 // '{' class_statement_list '}'
 
1190                 if (token == TokenNameLBRACE) {
 
1192                         if (token != TokenNameRBRACE) {
 
1193                                 ArrayList list = new ArrayList();
 
1194                                 class_statement_list(list);
 
1195                                 typeDecl.fields = new FieldDeclaration[list.size()];
 
1196                                 for (int i = 0; i < list.size(); i++) {
 
1197                                         typeDecl.fields[i] = (FieldDeclaration) list.get(i);
 
1200                         if (token == TokenNameRBRACE) {
 
1201                                 typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
 
1204                                 throwSyntaxError("'}' expected at end of class body.");
 
1207                         throwSyntaxError("'{' expected at start of class body.");
 
1211         private void class_entry_type() {
 
1213                 // | T_ABSTRACT T_CLASS
 
1214                 // | T_FINAL T_CLASS
 
1215                 if (token == TokenNameclass) {
 
1217                 } else if (token == TokenNameabstract) {
 
1218                         checkAndSetModifiers(AccAbstract);
 
1220                         if (token != TokenNameclass) {
 
1221                                 throwSyntaxError("Keyword 'class' expected after keyword 'abstract'.");
 
1224                 } else if (token == TokenNamefinal) {
 
1225                         checkAndSetModifiers(AccFinal);
 
1227                         if (token != TokenNameclass) {
 
1228                                 throwSyntaxError("Keyword 'class' expected after keyword 'final'.");
 
1232                         throwSyntaxError("Keyword 'class' 'final' or 'abstract' expected");
 
1236         // private void class_extends(TypeDeclaration typeDecl) {
 
1238         // // | T_EXTENDS interface_list
 
1239         // if (token == TokenNameextends) {
 
1242         // if (token == TokenNameIdentifier) {
 
1245         // throwSyntaxError("Class name expected after keyword 'extends'.");
 
1250         private void interface_extends_list(TypeDeclaration typeDecl) {
 
1252                 // | T_EXTENDS interface_list
 
1253                 if (token == TokenNameextends) {
 
1259         private void implements_list(TypeDeclaration typeDecl) {
 
1261                 // | T_IMPLEMENTS interface_list
 
1262                 if (token == TokenNameimplements) {
 
1268         private void interface_list() {
 
1270                 // fully_qualified_class_name
 
1271                 // | interface_list ',' fully_qualified_class_name
 
1273                         if (token == TokenNameIdentifier) {
 
1276                                 throwSyntaxError("Interface name expected after keyword 'implements'.");
 
1278                         if (token != TokenNameCOMMA) {
 
1285         // private void classBody(TypeDeclaration typeDecl) {
 
1286         // //'{' [class-element-list] '}'
 
1287         // if (token == TokenNameLBRACE) {
 
1289         // if (token != TokenNameRBRACE) {
 
1290         // class_statement_list();
 
1292         // if (token == TokenNameRBRACE) {
 
1293         // typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
 
1296         // throwSyntaxError("'}' expected at end of class body.");
 
1299         // throwSyntaxError("'{' expected at start of class body.");
 
1302         private void class_statement_list(ArrayList list) {
 
1305                                 class_statement(list);
 
1306                                 if (token == TokenNamepublic || token == TokenNameprotected || token == TokenNameprivate || token == TokenNamestatic
 
1307                                                 || token == TokenNameabstract || token == TokenNamefinal || token == TokenNamefunction || token == TokenNamevar
 
1308                                                 || token == TokenNameconst) {
 
1311                                 if (token == TokenNameRBRACE) {
 
1314                                 throwSyntaxError("'}' at end of class statement.");
 
1315                         } catch (SyntaxError sytaxErr1) {
 
1316                                 boolean tokenize = scanner.tokenizeStrings;
 
1318                                         scanner.tokenizeStrings = true;
 
1321                                         // if an error occured,
 
1322                                         // try to find keywords
 
1323                                         // to parse the rest of the string
 
1324                                         while (token != TokenNameEOF) {
 
1325                                                 if (token == TokenNamepublic || token == TokenNameprotected || token == TokenNameprivate || token == TokenNamestatic
 
1326                                                                 || token == TokenNameabstract || token == TokenNamefinal || token == TokenNamefunction || token == TokenNamevar
 
1327                                                                 || token == TokenNameconst) {
 
1330                                                 // System.out.println(scanner.toStringAction(token));
 
1333                                         if (token == TokenNameEOF) {
 
1337                                         scanner.tokenizeStrings = tokenize;
 
1343         private void class_statement(ArrayList list) {
 
1345                 // variable_modifiers class_variable_declaration ';'
 
1346                 // | class_constant_declaration ';'
 
1347                 // | method_modifiers T_FUNCTION is_reference T_STRING
 
1348                 // '(' parameter_list ')' method_body
 
1349                 initializeModifiers();
 
1350                 int declarationSourceStart = scanner.getCurrentTokenStartPosition();
 
1352                 if (token == TokenNamevar) {
 
1353                         checkAndSetModifiers(AccPublic);
 
1354                         problemReporter.phpVarDeprecatedWarning(scanner.getCurrentTokenStartPosition(), scanner.getCurrentTokenEndPosition(),
 
1355                                         referenceContext, compilationUnit.compilationResult);
 
1357                         class_variable_declaration(declarationSourceStart, list);
 
1358                 } else if (token == TokenNameconst) {
 
1359                         checkAndSetModifiers(AccFinal | AccPublic);
 
1360                         class_constant_declaration(declarationSourceStart, list);
 
1361                         if (token != TokenNameSEMICOLON) {
 
1362                                 throwSyntaxError("';' expected after class const declaration.");
 
1366                         boolean hasModifiers = member_modifiers();
 
1367                         if (token == TokenNamefunction) {
 
1368                                 if (!hasModifiers) {
 
1369                                         checkAndSetModifiers(AccPublic);
 
1371                                 MethodDeclaration methodDecl = new MethodDeclaration(this.compilationUnit.compilationResult);
 
1372                                 methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
 
1373                                 methodDecl.modifiers = this.modifiers;
 
1374                                 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
 
1377                                         functionDefinition(methodDecl);
 
1379                                         int sourceEnd = methodDecl.sourceEnd;
 
1380                                         if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
 
1381                                                 sourceEnd = methodDecl.declarationSourceStart + 1;
 
1383                                         methodDecl.declarationSourceEnd = sourceEnd;
 
1384                                         methodDecl.sourceEnd = sourceEnd;
 
1387                                 if (!hasModifiers) {
 
1388                                         throwSyntaxError("'public' 'private' or 'protected' modifier expected for field declarations.");
 
1390                                 class_variable_declaration(declarationSourceStart, list);
 
1395         private void class_constant_declaration(int declarationSourceStart, ArrayList list) {
 
1396                 // class_constant_declaration ',' T_STRING '=' static_scalar
 
1397                 // | T_CONST T_STRING '=' static_scalar
 
1398                 if (token != TokenNameconst) {
 
1399                         throwSyntaxError("'const' keyword expected in class declaration.");
 
1404                         if (token != TokenNameIdentifier) {
 
1405                                 throwSyntaxError("Identifier expected in class const declaration.");
 
1407                         FieldDeclaration fieldDeclaration = new FieldDeclaration(scanner.getCurrentIdentifierSource(), scanner
 
1408                                         .getCurrentTokenStartPosition(), scanner.getCurrentTokenEndPosition());
 
1409                         fieldDeclaration.modifiers = this.modifiers;
 
1410                         fieldDeclaration.declarationSourceStart = declarationSourceStart;
 
1411                         fieldDeclaration.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
 
1412                         fieldDeclaration.modifiersSourceStart = declarationSourceStart;
 
1413                         // fieldDeclaration.type
 
1414                         list.add(fieldDeclaration);
 
1416                         if (token != TokenNameEQUAL) {
 
1417                                 throwSyntaxError("'=' expected in class const declaration.");
 
1421                         if (token != TokenNameCOMMA) {
 
1422                                 break; // while(true)-loop
 
1428         // private void variable_modifiers() {
 
1429         // // variable_modifiers:
 
1430         // // non_empty_member_modifiers
 
1432         // initializeModifiers();
 
1433         // if (token == TokenNamevar) {
 
1434         // checkAndSetModifiers(AccPublic);
 
1435         // reportSyntaxError(
 
1436         // "Keyword 'var' is deprecated. Please use 'public' 'private' or
 
1438         // modifier for field declarations.",
 
1439         // scanner.getCurrentTokenStartPosition(), scanner
 
1440         // .getCurrentTokenEndPosition());
 
1443         // if (!member_modifiers()) {
 
1444         // throwSyntaxError("'public' 'private' or 'protected' modifier expected for
 
1445         // field declarations.");
 
1449         // private void method_modifiers() {
 
1450         // //method_modifiers:
 
1452         // //| non_empty_member_modifiers
 
1453         // initializeModifiers();
 
1454         // if (!member_modifiers()) {
 
1455         // checkAndSetModifiers(AccPublic);
 
1458         private boolean member_modifiers() {
 
1465                 boolean foundToken = false;
 
1467                         if (token == TokenNamepublic) {
 
1468                                 checkAndSetModifiers(AccPublic);
 
1471                         } else if (token == TokenNameprotected) {
 
1472                                 checkAndSetModifiers(AccProtected);
 
1475                         } else if (token == TokenNameprivate) {
 
1476                                 checkAndSetModifiers(AccPrivate);
 
1479                         } else if (token == TokenNamestatic) {
 
1480                                 checkAndSetModifiers(AccStatic);
 
1483                         } else if (token == TokenNameabstract) {
 
1484                                 checkAndSetModifiers(AccAbstract);
 
1487                         } else if (token == TokenNamefinal) {
 
1488                                 checkAndSetModifiers(AccFinal);
 
1498         private void class_variable_declaration(int declarationSourceStart, ArrayList list) {
 
1499                 // class_variable_declaration:
 
1500                 // class_variable_declaration ',' T_VARIABLE
 
1501                 // | class_variable_declaration ',' T_VARIABLE '=' static_scalar
 
1503                 // | T_VARIABLE '=' static_scalar
 
1504                 char[] classVariable;
 
1506                         if (token == TokenNameVariable) {
 
1507                                 classVariable = scanner.getCurrentIdentifierSource();
 
1508                                 // indexManager.addIdentifierInformation('v', classVariable, buf, -1,
 
1510                                 FieldDeclaration fieldDeclaration = new FieldDeclaration(classVariable, scanner.getCurrentTokenStartPosition(), scanner
 
1511                                                 .getCurrentTokenEndPosition());
 
1512                                 fieldDeclaration.modifiers = this.modifiers;
 
1513                                 fieldDeclaration.declarationSourceStart = declarationSourceStart;
 
1514                                 fieldDeclaration.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
 
1515                                 fieldDeclaration.modifiersSourceStart = declarationSourceStart;
 
1516                                 list.add(fieldDeclaration);
 
1517                                 if (fTypeVariables != null) {
 
1518                                         VariableInfo info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_CLASS_UNIT);
 
1519                                         fTypeVariables.put(new String(scanner.getCurrentIdentifierSource()), info);
 
1522                                 if (token == TokenNameEQUAL) {
 
1527                                 // if (token == TokenNamethis) {
 
1528                                 // throwSyntaxError("'$this' not allowed after keyword 'public'
 
1529                                 // 'protected' 'private' 'var'.");
 
1531                                 throwSyntaxError("Variable expected after keyword 'public' 'protected' 'private' 'var'.");
 
1533                         if (token != TokenNameCOMMA) {
 
1538                 if (token != TokenNameSEMICOLON) {
 
1539                         throwSyntaxError("';' expected after field declaration.");
 
1544         private void functionDefinition(MethodDeclaration methodDecl) {
 
1545                 boolean isAbstract = false;
 
1547                         if (compilationUnit != null) {
 
1548                                 compilationUnit.types.add(methodDecl);
 
1551                         ASTNode node = astStack[astPtr];
 
1552                         if (node instanceof TypeDeclaration) {
 
1553                                 TypeDeclaration typeDecl = ((TypeDeclaration) node);
 
1554                                 if (typeDecl.methods == null) {
 
1555                                         typeDecl.methods = new AbstractMethodDeclaration[] { methodDecl };
 
1557                                         AbstractMethodDeclaration[] newMethods;
 
1558                                         System.arraycopy(typeDecl.methods, 0, newMethods = new AbstractMethodDeclaration[typeDecl.methods.length + 1], 0,
 
1559                                                         typeDecl.methods.length);
 
1560                                         newMethods[typeDecl.methods.length] = methodDecl;
 
1561                                         typeDecl.methods = newMethods;
 
1563                                 if ((typeDecl.modifiers & AccAbstract) == AccAbstract) {
 
1565                                 } else if ((typeDecl.modifiers & AccInterface) == AccInterface) {
 
1571                         pushFunctionVariableSet();
 
1572                         functionDeclarator(methodDecl);
 
1573                         if (token == TokenNameSEMICOLON) {
 
1575                                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
1576                                         throwSyntaxError("Body declaration expected for method: " + new String(methodDecl.selector));
 
1581                         functionBody(methodDecl);
 
1583                         if (!fStackUnassigned.isEmpty()) {
 
1584                                 fStackUnassigned.remove(fStackUnassigned.size() - 1);
 
1589         private void functionDeclarator(MethodDeclaration methodDecl) {
 
1590                 // identifier '(' [parameter-list] ')'
 
1591                 if (token == TokenNameAND) {
 
1594                 methodDecl.sourceStart = scanner.getCurrentTokenStartPosition();
 
1595                 methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
 
1596                 if (Scanner.isIdentifierOrKeyword(token)) {
 
1597                         methodDecl.selector = scanner.getCurrentIdentifierSource();
 
1598                         if (token > TokenNameKEYWORD) {
 
1599                                 problemReporter.phpKeywordWarning(new String[] { scanner.toStringAction(token) }, scanner.getCurrentTokenStartPosition(),
 
1600                                                 scanner.getCurrentTokenEndPosition(), referenceContext, compilationUnit.compilationResult);
 
1603                         if (token == TokenNameLPAREN) {
 
1606                                 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
1607                                 throwSyntaxError("'(' expected in function declaration.");
 
1609                         if (token != TokenNameRPAREN) {
 
1610                                 parameter_list(methodDecl);
 
1612                         if (token != TokenNameRPAREN) {
 
1613                                 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
1614                                 throwSyntaxError("')' expected in function declaration.");
 
1616                                 methodDecl.bodyStart = scanner.getCurrentTokenEndPosition() + 1;
 
1620                         methodDecl.selector = "<undefined>".toCharArray();
 
1621                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
 
1622                         throwSyntaxError("Function name expected after keyword 'function'.");
 
1627         private void parameter_list(MethodDeclaration methodDecl) {
 
1628                 // non_empty_parameter_list
 
1630                 non_empty_parameter_list(methodDecl, true);
 
1633         private void non_empty_parameter_list(MethodDeclaration methodDecl, boolean empty_allowed) {
 
1634                 // optional_class_type T_VARIABLE
 
1635                 // | optional_class_type '&' T_VARIABLE
 
1636                 // | optional_class_type '&' T_VARIABLE '=' static_scalar
 
1637                 // | optional_class_type T_VARIABLE '=' static_scalar
 
1638                 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE
 
1639                 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE
 
1640                 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE '='
 
1642                 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE '='
 
1644                 char[] typeIdentifier = null;
 
1645                 if (token == TokenNameIdentifier || token == TokenNameVariable || token == TokenNameAND) {
 
1646                         HashSet set = peekVariableSet();
 
1648                                 if (token == TokenNameIdentifier) {
 
1649                                         typeIdentifier = scanner.getCurrentIdentifierSource();
 
1652                                 if (token == TokenNameAND) {
 
1655                                 if (token == TokenNameVariable) {
 
1656                                         if (fMethodVariables != null) {
 
1658                                                 if (methodDecl.type == MethodDeclaration.FUNCTION_DEFINITION) {
 
1659                                                         info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_FUNCTION_DEFINITION);
 
1661                                                         info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_METHOD_DEFINITION);
 
1663                                                 info.typeIdentifier = typeIdentifier;
 
1664                                                 fMethodVariables.put(new String(scanner.getCurrentIdentifierSource()), info);
 
1666                                         addVariableSet(set);
 
1668                                         if (token == TokenNameEQUAL) {
 
1673                                         throwSyntaxError("Variable expected in parameter list.");
 
1675                                 if (token != TokenNameCOMMA) {
 
1682                 if (!empty_allowed) {
 
1683                         throwSyntaxError("Identifier expected in parameter list.");
 
1687         private void optional_class_type() {
 
1692         // private void parameterDeclaration() {
 
1694         // //variable-reference
 
1695         // if (token == TokenNameAND) {
 
1697         // if (isVariable()) {
 
1700         // throwSyntaxError("Variable expected after reference operator '&'.");
 
1703         // //variable '=' constant
 
1704         // if (token == TokenNameVariable) {
 
1706         // if (token == TokenNameEQUAL) {
 
1712         // // if (token == TokenNamethis) {
 
1713         // // throwSyntaxError("Reserved word '$this' not allowed in parameter
 
1714         // // declaration.");
 
1718         private void labeledStatementList() {
 
1719                 if (token != TokenNamecase && token != TokenNamedefault) {
 
1720                         throwSyntaxError("'case' or 'default' expected.");
 
1723                         if (token == TokenNamecase) {
 
1725                                 expr(); // constant();
 
1726                                 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
 
1728                                         if (token == TokenNameRBRACE) {
 
1729                                                 // empty case; assumes that the '}' token belongs to the wrapping switch statement - #1371992
 
1732                                         if (token == TokenNamecase || token == TokenNamedefault) {
 
1733                                                 // empty case statement ?
 
1738                                 // else if (token == TokenNameSEMICOLON) {
 
1740                                 // "':' expected after 'case' keyword (Found token: " +
 
1741                                 // scanner.toStringAction(token) + ")",
 
1742                                 // scanner.getCurrentTokenStartPosition(),
 
1743                                 // scanner.getCurrentTokenEndPosition(),
 
1746                                 // if (token == TokenNamecase) { // empty case statement ?
 
1752                                         throwSyntaxError("':' character expected after 'case' constant (Found token: " + scanner.toStringAction(token) + ")");
 
1754                         } else { // TokenNamedefault
 
1756                                 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
 
1758                                         if (token == TokenNameRBRACE) {
 
1759                                                 // empty default case; ; assumes that the '}' token belongs to the wrapping switch statement - #1371992
 
1762                                         if (token != TokenNamecase) {
 
1766                                         throwSyntaxError("':' character expected after 'default'.");
 
1769                 } while (token == TokenNamecase || token == TokenNamedefault);
 
1772         private void ifStatementColon(IfStatement iState) {
 
1773                 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
 
1774                 // new_else_single T_ENDIF ';'
 
1775                 HashSet assignedVariableSet = null;
 
1777                         Block b = inner_statement_list();
 
1778                         iState.thenStatement = b;
 
1779                         checkUnreachable(iState, b);
 
1781                         assignedVariableSet = removeIfVariableSet();
 
1783                 if (token == TokenNameelseif) {
 
1785                                 pushIfVariableSet();
 
1786                                 new_elseif_list(iState);
 
1788                                 HashSet set = removeIfVariableSet();
 
1789                                 if (assignedVariableSet != null && set != null) {
 
1790                                         assignedVariableSet.addAll(set);
 
1795                         pushIfVariableSet();
 
1796                         new_else_single(iState);
 
1798                         HashSet set = removeIfVariableSet();
 
1799                         if (assignedVariableSet != null) {
 
1800                                 HashSet topSet = peekVariableSet();
 
1801                                 if (topSet != null) {
 
1805                                         topSet.addAll(assignedVariableSet);
 
1809                 if (token != TokenNameendif) {
 
1810                         throwSyntaxError("'endif' expected.");
 
1813                 if (token != TokenNameSEMICOLON) {
 
1814                         reportSyntaxError("';' expected after if-statement.");
 
1815                         iState.sourceEnd = scanner.getCurrentTokenStartPosition();
 
1817                         iState.sourceEnd = scanner.getCurrentTokenEndPosition();
 
1822         private void ifStatement(IfStatement iState) {
 
1823                 // T_IF '(' expr ')' statement elseif_list else_single
 
1824                 HashSet assignedVariableSet = null;
 
1826                         pushIfVariableSet();
 
1827                         Statement s = statement();
 
1828                         iState.thenStatement = s;
 
1829                         checkUnreachable(iState, s);
 
1831                         assignedVariableSet = removeIfVariableSet();
 
1834                 if (token == TokenNameelseif) {
 
1836                                 pushIfVariableSet();
 
1837                                 elseif_list(iState);
 
1839                                 HashSet set = removeIfVariableSet();
 
1840                                 if (assignedVariableSet != null && set != null) {
 
1841                                         assignedVariableSet.addAll(set);
 
1846                         pushIfVariableSet();
 
1847                         else_single(iState);
 
1849                         HashSet set = removeIfVariableSet();
 
1850                         if (assignedVariableSet != null) {
 
1851                                 HashSet topSet = peekVariableSet();
 
1852                                 if (topSet != null) {
 
1856                                         topSet.addAll(assignedVariableSet);
 
1862         private void elseif_list(IfStatement iState) {
 
1864                 // | elseif_list T_ELSEIF '(' expr ')' statement
 
1865                 ArrayList conditionList = new ArrayList();
 
1866                 ArrayList statementList = new ArrayList();
 
1869                 while (token == TokenNameelseif) {
 
1871                         if (token == TokenNameLPAREN) {
 
1874                                 throwSyntaxError("'(' expected after 'elseif' keyword.");
 
1877                         conditionList.add(e);
 
1878                         if (token == TokenNameRPAREN) {
 
1881                                 throwSyntaxError("')' expected after 'elseif' condition.");
 
1884                         statementList.add(s);
 
1885                         checkUnreachable(iState, s);
 
1887                 iState.elseifConditions = new Expression[conditionList.size()];
 
1888                 iState.elseifStatements = new Statement[statementList.size()];
 
1889                 conditionList.toArray(iState.elseifConditions);
 
1890                 statementList.toArray(iState.elseifStatements);
 
1893         private void new_elseif_list(IfStatement iState) {
 
1895                 // | new_elseif_list T_ELSEIF '(' expr ')' ':' inner_statement_list
 
1896                 ArrayList conditionList = new ArrayList();
 
1897                 ArrayList statementList = new ArrayList();
 
1900                 while (token == TokenNameelseif) {
 
1902                         if (token == TokenNameLPAREN) {
 
1905                                 throwSyntaxError("'(' expected after 'elseif' keyword.");
 
1908                         conditionList.add(e);
 
1909                         if (token == TokenNameRPAREN) {
 
1912                                 throwSyntaxError("')' expected after 'elseif' condition.");
 
1914                         if (token == TokenNameCOLON) {
 
1917                                 throwSyntaxError("':' expected after 'elseif' keyword.");
 
1919                         b = inner_statement_list();
 
1920                         statementList.add(b);
 
1921                         checkUnreachable(iState, b);
 
1923                 iState.elseifConditions = new Expression[conditionList.size()];
 
1924                 iState.elseifStatements = new Statement[statementList.size()];
 
1925                 conditionList.toArray(iState.elseifConditions);
 
1926                 statementList.toArray(iState.elseifStatements);
 
1929         private void else_single(IfStatement iState) {
 
1932                 if (token == TokenNameelse) {
 
1934                         Statement s = statement();
 
1935                         iState.elseStatement = s;
 
1936                         checkUnreachable(iState, s);
 
1938                         iState.checkUnreachable = false;
 
1940                 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
 
1943         private void new_else_single(IfStatement iState) {
 
1945                 // | T_ELSE ':' inner_statement_list
 
1946                 if (token == TokenNameelse) {
 
1948                         if (token == TokenNameCOLON) {
 
1951                                 throwSyntaxError("':' expected after 'else' keyword.");
 
1953                         Block b = inner_statement_list();
 
1954                         iState.elseStatement = b;
 
1955                         checkUnreachable(iState, b);
 
1957                         iState.checkUnreachable = false;
 
1961         private Block inner_statement_list() {
 
1962                 // inner_statement_list inner_statement
 
1964                 return statementList();
 
1971         private void checkUnreachable(IfStatement iState, Statement s) {
 
1972                 if (s instanceof Block) {
 
1973                         Block b = (Block) s;
 
1974                         if (b.statements == null || b.statements.length == 0) {
 
1975                                 iState.checkUnreachable = false;
 
1977                                 int off = b.statements.length - 1;
 
1978                                 if (!(b.statements[off] instanceof ReturnStatement) && !(b.statements[off] instanceof ContinueStatement)
 
1979                                                 && !(b.statements[off] instanceof BreakStatement)) {
 
1980                                         if (!(b.statements[off] instanceof IfStatement) || !((IfStatement) b.statements[off]).checkUnreachable) {
 
1981                                                 iState.checkUnreachable = false;
 
1986                         if (!(s instanceof ReturnStatement) && !(s instanceof ContinueStatement) && !(s instanceof BreakStatement)) {
 
1987                                 if (!(s instanceof IfStatement) || !((IfStatement) s).checkUnreachable) {
 
1988                                         iState.checkUnreachable = false;
 
1994         // private void elseifStatementList() {
 
1996         // elseifStatement();
 
1998         // case TokenNameelse:
 
2000         // if (token == TokenNameCOLON) {
 
2002         // if (token != TokenNameendif) {
 
2007         // if (token == TokenNameif) { //'else if'
 
2010         // throwSyntaxError("':' expected after 'else'.");
 
2014         // case TokenNameelseif:
 
2023         // private void elseifStatement() {
 
2024         // if (token == TokenNameLPAREN) {
 
2027         // if (token != TokenNameRPAREN) {
 
2028         // throwSyntaxError("')' expected in else-if-statement.");
 
2031         // if (token != TokenNameCOLON) {
 
2032         // throwSyntaxError("':' expected in else-if-statement.");
 
2035         // if (token != TokenNameendif) {
 
2041         private void switchStatement() {
 
2042                 if (token == TokenNameCOLON) {
 
2043                         // ':' [labeled-statement-list] 'endswitch' ';'
 
2045                         labeledStatementList();
 
2046                         if (token != TokenNameendswitch) {
 
2047                                 throwSyntaxError("'endswitch' expected.");
 
2050                         if (token != TokenNameSEMICOLON) {
 
2051                                 throwSyntaxError("';' expected after switch-statement.");
 
2055                         // '{' [labeled-statement-list] '}'
 
2056                         if (token != TokenNameLBRACE) {
 
2057                                 throwSyntaxError("'{' expected in switch statement.");
 
2060                         if (token != TokenNameRBRACE) {
 
2061                                 labeledStatementList();
 
2063                         if (token != TokenNameRBRACE) {
 
2064                                 throwSyntaxError("'}' expected in switch statement.");
 
2070         private void forStatement() {
 
2071                 if (token == TokenNameCOLON) {
 
2074                         if (token != TokenNameendfor) {
 
2075                                 throwSyntaxError("'endfor' expected.");
 
2078                         if (token != TokenNameSEMICOLON) {
 
2079                                 throwSyntaxError("';' expected after for-statement.");
 
2087         private void whileStatement() {
 
2088                 // ':' statement-list 'endwhile' ';'
 
2089                 if (token == TokenNameCOLON) {
 
2092                         if (token != TokenNameendwhile) {
 
2093                                 throwSyntaxError("'endwhile' expected.");
 
2096                         if (token != TokenNameSEMICOLON) {
 
2097                                 throwSyntaxError("';' expected after while-statement.");
 
2105         private void foreachStatement() {
 
2106                 if (token == TokenNameCOLON) {
 
2109                         if (token != TokenNameendforeach) {
 
2110                                 throwSyntaxError("'endforeach' expected.");
 
2113                         if (token != TokenNameSEMICOLON) {
 
2114                                 throwSyntaxError("';' expected after foreach-statement.");
 
2122         // private void exitStatus() {
 
2123         // if (token == TokenNameLPAREN) {
 
2126         // throwSyntaxError("'(' expected in 'exit-status'.");
 
2128         // if (token != TokenNameRPAREN) {
 
2131         // if (token == TokenNameRPAREN) {
 
2134         // throwSyntaxError("')' expected after 'exit-status'.");
 
2137         private void expressionList() {
 
2140                         if (token == TokenNameCOMMA) {
 
2148         private Expression expr() {
 
2150                 // | expr_without_variable
 
2151                 // if (token!=TokenNameEOF) {
 
2152                 if (Scanner.TRACE) {
 
2153                         System.out.println("TRACE: expr()");
 
2155                 return expr_without_variable(true);
 
2159         private Expression expr_without_variable(boolean only_variable) {
 
2160                 int exprSourceStart = scanner.getCurrentTokenStartPosition();
 
2161                 int exprSourceEnd = scanner.getCurrentTokenEndPosition();
 
2162                 Expression expression = new Expression();
 
2163                 expression.sourceStart = exprSourceStart;
 
2164                 // default, may be overwritten
 
2165                 expression.sourceEnd = exprSourceEnd;
 
2167                         // internal_functions_in_yacc
 
2176                         // | T_INC rw_variable
 
2177                         // | T_DEC rw_variable
 
2178                         // | T_INT_CAST expr
 
2179                         // | T_DOUBLE_CAST expr
 
2180                         // | T_STRING_CAST expr
 
2181                         // | T_ARRAY_CAST expr
 
2182                         // | T_OBJECT_CAST expr
 
2183                         // | T_BOOL_CAST expr
 
2184                         // | T_UNSET_CAST expr
 
2185                         // | T_EXIT exit_expr
 
2187                         // | T_ARRAY '(' array_pair_list ')'
 
2188                         // | '`' encaps_list '`'
 
2189                         // | T_LIST '(' assignment_list ')' '=' expr
 
2190                         // | T_NEW class_name_reference ctor_arguments
 
2191                         // | variable '=' expr
 
2192                         // | variable '=' '&' variable
 
2193                         // | variable '=' '&' T_NEW class_name_reference ctor_arguments
 
2194                         // | variable T_PLUS_EQUAL expr
 
2195                         // | variable T_MINUS_EQUAL expr
 
2196                         // | variable T_MUL_EQUAL expr
 
2197                         // | variable T_DIV_EQUAL expr
 
2198                         // | variable T_CONCAT_EQUAL expr
 
2199                         // | variable T_MOD_EQUAL expr
 
2200                         // | variable T_AND_EQUAL expr
 
2201                         // | variable T_OR_EQUAL expr
 
2202                         // | variable T_XOR_EQUAL expr
 
2203                         // | variable T_SL_EQUAL expr
 
2204                         // | variable T_SR_EQUAL expr
 
2205                         // | rw_variable T_INC
 
2206                         // | rw_variable T_DEC
 
2207                         // | expr T_BOOLEAN_OR expr
 
2208                         // | expr T_BOOLEAN_AND expr
 
2209                         // | expr T_LOGICAL_OR expr
 
2210                         // | expr T_LOGICAL_AND expr
 
2211                         // | expr T_LOGICAL_XOR expr
 
2223                         // | expr T_IS_IDENTICAL expr
 
2224                         // | expr T_IS_NOT_IDENTICAL expr
 
2225                         // | expr T_IS_EQUAL expr
 
2226                         // | expr T_IS_NOT_EQUAL expr
 
2228                         // | expr T_IS_SMALLER_OR_EQUAL expr
 
2230                         // | expr T_IS_GREATER_OR_EQUAL expr
 
2231                         // | expr T_INSTANCEOF class_name_reference
 
2232                         // | expr '?' expr ':' expr
 
2233                         if (Scanner.TRACE) {
 
2234                                 System.out.println("TRACE: expr_without_variable() PART 1");
 
2237                         case TokenNameisset:
 
2238                                 // T_ISSET '(' isset_variables ')'
 
2240                                 if (token != TokenNameLPAREN) {
 
2241                                         throwSyntaxError("'(' expected after keyword 'isset'");
 
2245                                 if (token != TokenNameRPAREN) {
 
2246                                         throwSyntaxError("')' expected after keyword 'isset'");
 
2250                         case TokenNameempty:
 
2252                                 if (token != TokenNameLPAREN) {
 
2253                                         throwSyntaxError("'(' expected after keyword 'empty'");
 
2256                                 variable(true, false);
 
2257                                 if (token != TokenNameRPAREN) {
 
2258                                         throwSyntaxError("')' expected after keyword 'empty'");
 
2263                         case TokenNameinclude:
 
2264                         case TokenNameinclude_once:
 
2265                         case TokenNamerequire:
 
2266                         case TokenNamerequire_once:
 
2267                                 internal_functions_in_yacc();
 
2270                         case TokenNameLPAREN:
 
2273                                 if (token == TokenNameRPAREN) {
 
2276                                         throwSyntaxError("')' expected in expression.");
 
2286                         // | T_INT_CAST expr
 
2287                         // | T_DOUBLE_CAST expr
 
2288                         // | T_STRING_CAST expr
 
2289                         // | T_ARRAY_CAST expr
 
2290                         // | T_OBJECT_CAST expr
 
2291                         // | T_BOOL_CAST expr
 
2292                         // | T_UNSET_CAST expr
 
2293                         case TokenNameclone:
 
2294                         case TokenNameprint:
 
2297                         case TokenNameMINUS:
 
2299                         case TokenNameTWIDDLE:
 
2300                         case TokenNameintCAST:
 
2301                         case TokenNamedoubleCAST:
 
2302                         case TokenNamestringCAST:
 
2303                         case TokenNamearrayCAST:
 
2304                         case TokenNameobjectCAST:
 
2305                         case TokenNameboolCAST:
 
2306                         case TokenNameunsetCAST:
 
2316                         // | T_STRING_VARNAME
 
2318                         // | T_START_HEREDOC encaps_list T_END_HEREDOC
 
2319                         // | '`' encaps_list '`'
 
2321                         // | '`' encaps_list '`'
 
2322                         // case TokenNameEncapsedString0:
 
2323                         // scanner.encapsedStringStack.push(new Character('`'));
 
2326                         // if (token == TokenNameEncapsedString0) {
 
2329                         // if (token != TokenNameEncapsedString0) {
 
2330                         // throwSyntaxError("\'`\' expected at end of string" + "(Found token: " +
 
2331                         // scanner.toStringAction(token) + " )");
 
2335                         // scanner.encapsedStringStack.pop();
 
2339                         // // | '\'' encaps_list '\''
 
2340                         // case TokenNameEncapsedString1:
 
2341                         // scanner.encapsedStringStack.push(new Character('\''));
 
2344                         // exprSourceStart = scanner.getCurrentTokenStartPosition();
 
2345                         // if (token == TokenNameEncapsedString1) {
 
2347                         // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
 
2348                         // exprSourceStart, scanner
 
2349                         // .getCurrentTokenEndPosition());
 
2352                         // if (token != TokenNameEncapsedString1) {
 
2353                         // throwSyntaxError("\'\'\' expected at end of string" + "(Found token: "
 
2354                         // + scanner.toStringAction(token) + " )");
 
2357                         // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
 
2358                         // exprSourceStart, scanner
 
2359                         // .getCurrentTokenEndPosition());
 
2363                         // scanner.encapsedStringStack.pop();
 
2367                         // //| '"' encaps_list '"'
 
2368                         // case TokenNameEncapsedString2:
 
2369                         // scanner.encapsedStringStack.push(new Character('"'));
 
2372                         // exprSourceStart = scanner.getCurrentTokenStartPosition();
 
2373                         // if (token == TokenNameEncapsedString2) {
 
2375                         // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
 
2376                         // exprSourceStart, scanner
 
2377                         // .getCurrentTokenEndPosition());
 
2380                         // if (token != TokenNameEncapsedString2) {
 
2381                         // throwSyntaxError("'\"' expected at end of string" + "(Found token: " +
 
2382                         // scanner.toStringAction(token) + " )");
 
2385                         // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
 
2386                         // exprSourceStart, scanner
 
2387                         // .getCurrentTokenEndPosition());
 
2391                         // scanner.encapsedStringStack.pop();
 
2395                         case TokenNameStringDoubleQuote:
 
2396                                 expression = new StringLiteralDQ(scanner.getCurrentStringLiteralSource(), scanner.getCurrentTokenStartPosition(), scanner
 
2397                                                 .getCurrentTokenEndPosition());
 
2400                         case TokenNameStringSingleQuote:
 
2401                                 expression = new StringLiteralSQ(scanner.getCurrentStringLiteralSource(), scanner.getCurrentTokenStartPosition(), scanner
 
2402                                                 .getCurrentTokenEndPosition());
 
2405                         case TokenNameIntegerLiteral:
 
2406                         case TokenNameDoubleLiteral:
 
2407                         case TokenNameStringInterpolated:
 
2410                         case TokenNameCLASS_C:
 
2411                         case TokenNameMETHOD_C:
 
2412                         case TokenNameFUNC_C:
 
2415                         case TokenNameHEREDOC:
 
2418                         case TokenNamearray:
 
2419                                 // T_ARRAY '(' array_pair_list ')'
 
2421                                 if (token == TokenNameLPAREN) {
 
2423                                         if (token == TokenNameRPAREN) {
 
2428                                         if (token != TokenNameRPAREN) {
 
2429                                                 throwSyntaxError("')' or ',' expected after keyword 'array'" + "(Found token: " + scanner.toStringAction(token) + ")");
 
2433                                         throwSyntaxError("'(' expected after keyword 'array'" + "(Found token: " + scanner.toStringAction(token) + ")");
 
2437                                 // | T_LIST '(' assignment_list ')' '=' expr
 
2439                                 if (token == TokenNameLPAREN) {
 
2442                                         if (token != TokenNameRPAREN) {
 
2443                                                 throwSyntaxError("')' expected after 'list' keyword.");
 
2446                                         if (token != TokenNameEQUAL) {
 
2447                                                 throwSyntaxError("'=' expected after 'list' keyword.");
 
2452                                         throwSyntaxError("'(' expected after 'list' keyword.");
 
2456                                 // | T_NEW class_name_reference ctor_arguments
 
2458                                 Expression typeRef = class_name_reference();
 
2460                                 if (typeRef != null) {
 
2461                                         expression = typeRef;
 
2464                         // | T_INC rw_variable
 
2465                         // | T_DEC rw_variable
 
2466                         case TokenNamePLUS_PLUS:
 
2467                         case TokenNameMINUS_MINUS:
 
2471                         // | variable '=' expr
 
2472                         // | variable '=' '&' variable
 
2473                         // | variable '=' '&' T_NEW class_name_reference ctor_arguments
 
2474                         // | variable T_PLUS_EQUAL expr
 
2475                         // | variable T_MINUS_EQUAL expr
 
2476                         // | variable T_MUL_EQUAL expr
 
2477                         // | variable T_DIV_EQUAL expr
 
2478                         // | variable T_CONCAT_EQUAL expr
 
2479                         // | variable T_MOD_EQUAL expr
 
2480                         // | variable T_AND_EQUAL expr
 
2481                         // | variable T_OR_EQUAL expr
 
2482                         // | variable T_XOR_EQUAL expr
 
2483                         // | variable T_SL_EQUAL expr
 
2484                         // | variable T_SR_EQUAL expr
 
2485                         // | rw_variable T_INC
 
2486                         // | rw_variable T_DEC
 
2487                         case TokenNameIdentifier:
 
2488                         case TokenNameVariable:
 
2489                         case TokenNameDOLLAR:
 
2490                                 Expression lhs = null;
 
2491                                 boolean rememberedVar = false;
 
2492                                 if (token == TokenNameIdentifier) {
 
2493                                         lhs = identifier(true, true);
 
2498                                         lhs = variable(true, true);
 
2502                                         if (lhs != null && lhs instanceof FieldReference && token != TokenNameEQUAL && token != TokenNamePLUS_EQUAL
 
2503                                                         && token != TokenNameMINUS_EQUAL && token != TokenNameMULTIPLY_EQUAL && token != TokenNameDIVIDE_EQUAL
 
2504                                                         && token != TokenNameDOT_EQUAL && token != TokenNameREMAINDER_EQUAL && token != TokenNameAND_EQUAL
 
2505                                                         && token != TokenNameOR_EQUAL && token != TokenNameXOR_EQUAL && token != TokenNameRIGHT_SHIFT_EQUAL
 
2506                                                         && token != TokenNameLEFT_SHIFT_EQUAL) {
 
2507                                                 FieldReference ref = (FieldReference) lhs;
 
2508                                                 if (!containsVariableSet(ref.token)) {
 
2509                                                         problemReporter.uninitializedLocalVariable(new String(ref.token), ref.sourceStart(), ref.sourceEnd(),
 
2510                                                                         referenceContext, compilationUnit.compilationResult);
 
2511                                                         addVariableSet(ref.token);
 
2516                                 case TokenNameEQUAL:
 
2517                                         if (lhs != null && lhs instanceof FieldReference) {
 
2518                                                 addVariableSet(((FieldReference) lhs).token);
 
2521                                         if (token == TokenNameAND) {
 
2523                                                 if (token == TokenNamenew) {
 
2524                                                         // | variable '=' '&' T_NEW class_name_reference
 
2527                                                         SingleTypeReference classRef = class_name_reference();
 
2529                                                         if (classRef != null) {
 
2530                                                                 if (lhs != null && lhs instanceof FieldReference) {
 
2532                                                                         // $var = & new Object();
 
2533                                                                         if (fMethodVariables != null) {
 
2534                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
 
2535                                                                                 lhsInfo.reference = classRef;
 
2536                                                                                 lhsInfo.typeIdentifier = classRef.token;
 
2537                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
 
2538                                                                                 rememberedVar = true;
 
2543                                                         Expression rhs = variable(false, false);
 
2544                                                         if (rhs != null && rhs instanceof FieldReference && lhs != null && lhs instanceof FieldReference) {
 
2547                                                                 if (fMethodVariables != null) {
 
2548                                                                         VariableInfo rhsInfo = (VariableInfo) fMethodVariables.get(((FieldReference) rhs).token);
 
2549                                                                         if (rhsInfo != null && rhsInfo.reference != null) {
 
2550                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
 
2551                                                                                 lhsInfo.reference = rhsInfo.reference;
 
2552                                                                                 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
 
2553                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
 
2554                                                                                 rememberedVar = true;
 
2560                                                 Expression rhs = expr();
 
2561                                                 if (lhs != null && lhs instanceof FieldReference) {
 
2562                                                         if (rhs != null && rhs instanceof FieldReference) {
 
2565                                                                 if (fMethodVariables != null) {
 
2566                                                                         VariableInfo rhsInfo = (VariableInfo) fMethodVariables.get(((FieldReference) rhs).token);
 
2567                                                                         if (rhsInfo != null && rhsInfo.reference != null) {
 
2568                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
 
2569                                                                                 lhsInfo.reference = rhsInfo.reference;
 
2570                                                                                 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
 
2571                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
 
2572                                                                                 rememberedVar = true;
 
2575                                                         } else if (rhs != null && rhs instanceof SingleTypeReference) {
 
2577                                                                 // $var = new Object();
 
2578                                                                 if (fMethodVariables != null) {
 
2579                                                                         VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
 
2580                                                                         lhsInfo.reference = (SingleTypeReference) rhs;
 
2581                                                                         lhsInfo.typeIdentifier = ((SingleTypeReference) rhs).token;
 
2582                                                                         fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
 
2583                                                                         rememberedVar = true;
 
2588                                         if (rememberedVar == false && lhs != null && lhs instanceof FieldReference) {
 
2589                                                 if (fMethodVariables != null) {
 
2590                                                         VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
 
2591                                                         fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
 
2595                                 case TokenNamePLUS_EQUAL:
 
2596                                 case TokenNameMINUS_EQUAL:
 
2597                                 case TokenNameMULTIPLY_EQUAL:
 
2598                                 case TokenNameDIVIDE_EQUAL:
 
2599                                 case TokenNameDOT_EQUAL:
 
2600                                 case TokenNameREMAINDER_EQUAL:
 
2601                                 case TokenNameAND_EQUAL:
 
2602                                 case TokenNameOR_EQUAL:
 
2603                                 case TokenNameXOR_EQUAL:
 
2604                                 case TokenNameRIGHT_SHIFT_EQUAL:
 
2605                                 case TokenNameLEFT_SHIFT_EQUAL:
 
2606                                         if (lhs != null && lhs instanceof FieldReference) {
 
2607                                                 addVariableSet(((FieldReference) lhs).token);
 
2612                                 case TokenNamePLUS_PLUS:
 
2613                                 case TokenNameMINUS_MINUS:
 
2617                                         if (!only_variable) {
 
2618                                                 throwSyntaxError("Variable expression not allowed (found token '" + scanner.toStringAction(token) + "').");
 
2626                                 if (token != TokenNameINLINE_HTML) {
 
2627                                         if (token > TokenNameKEYWORD) {
 
2631                                                 // System.out.println(scanner.getCurrentTokenStartPosition());
 
2632                                                 // System.out.println(scanner.getCurrentTokenEndPosition());
 
2634                                                 throwSyntaxError("Error in expression (found token '" + scanner.toStringAction(token) + "').");
 
2639                         if (Scanner.TRACE) {
 
2640                                 System.out.println("TRACE: expr_without_variable() PART 2");
 
2642                         // | expr T_BOOLEAN_OR expr
 
2643                         // | expr T_BOOLEAN_AND expr
 
2644                         // | expr T_LOGICAL_OR expr
 
2645                         // | expr T_LOGICAL_AND expr
 
2646                         // | expr T_LOGICAL_XOR expr
 
2658                         // | expr T_IS_IDENTICAL expr
 
2659                         // | expr T_IS_NOT_IDENTICAL expr
 
2660                         // | expr T_IS_EQUAL expr
 
2661                         // | expr T_IS_NOT_EQUAL expr
 
2663                         // | expr T_IS_SMALLER_OR_EQUAL expr
 
2665                         // | expr T_IS_GREATER_OR_EQUAL expr
 
2668                                 case TokenNameOR_OR:
 
2670                                         expression = new OR_OR_Expression(expression, expr(), token);
 
2672                                 case TokenNameAND_AND:
 
2674                                         expression = new AND_AND_Expression(expression, expr(), token);
 
2676                                 case TokenNameEQUAL_EQUAL:
 
2678                                         expression = new EqualExpression(expression, expr(), token);
 
2688                                 case TokenNameMINUS:
 
2689                                 case TokenNameMULTIPLY:
 
2690                                 case TokenNameDIVIDE:
 
2691                                 case TokenNameREMAINDER:
 
2692                                 case TokenNameLEFT_SHIFT:
 
2693                                 case TokenNameRIGHT_SHIFT:
 
2694                                 case TokenNameEQUAL_EQUAL_EQUAL:
 
2695                                 case TokenNameNOT_EQUAL_EQUAL:
 
2696                                 case TokenNameNOT_EQUAL:
 
2698                                 case TokenNameLESS_EQUAL:
 
2699                                 case TokenNameGREATER:
 
2700                                 case TokenNameGREATER_EQUAL:
 
2702                                         expression = new BinaryExpression(expression, expr(), token);
 
2704                                 // | expr T_INSTANCEOF class_name_reference
 
2705                                 // | expr '?' expr ':' expr
 
2706                                 case TokenNameinstanceof:
 
2708                                         TypeReference classRef = class_name_reference();
 
2709                                         if (classRef != null) {
 
2710                                                 expression = new InstanceOfExpression(expression, classRef, OperatorIds.INSTANCEOF);
 
2711                                                 expression.sourceStart = exprSourceStart;
 
2712                                                 expression.sourceEnd = scanner.getCurrentTokenEndPosition();
 
2715                                 case TokenNameQUESTION:
 
2717                                         Expression valueIfTrue = expr();
 
2718                                         if (token != TokenNameCOLON) {
 
2719                                                 throwSyntaxError("':' expected in conditional expression.");
 
2722                                         Expression valueIfFalse = expr();
 
2724                                         expression = new ConditionalExpression(expression, valueIfTrue, valueIfFalse);
 
2730                 } catch (SyntaxError e) {
 
2731                         // try to find next token after expression with errors:
 
2732                         if (token == TokenNameSEMICOLON) {
 
2736                         if (token == TokenNameRBRACE || token == TokenNameRPAREN || token == TokenNameRBRACKET) {
 
2744         private SingleTypeReference class_name_reference() {
 
2745                 // class_name_reference:
 
2747                 // | dynamic_class_name_reference
 
2748                 SingleTypeReference ref = null;
 
2749                 if (Scanner.TRACE) {
 
2750                         System.out.println("TRACE: class_name_reference()");
 
2752                 if (token == TokenNameIdentifier) {
 
2753                         ref = new SingleTypeReference(scanner.getCurrentIdentifierSource(), scanner.getCurrentTokenStartPosition());
 
2757                         dynamic_class_name_reference();
 
2762         private void dynamic_class_name_reference() {
 
2763                 // dynamic_class_name_reference:
 
2764                 // base_variable T_OBJECT_OPERATOR object_property
 
2765                 // dynamic_class_name_variable_properties
 
2767                 if (Scanner.TRACE) {
 
2768                         System.out.println("TRACE: dynamic_class_name_reference()");
 
2770                 base_variable(true);
 
2771                 if (token == TokenNameMINUS_GREATER) {
 
2774                         dynamic_class_name_variable_properties();
 
2778         private void dynamic_class_name_variable_properties() {
 
2779                 // dynamic_class_name_variable_properties:
 
2780                 // dynamic_class_name_variable_properties
 
2781                 // dynamic_class_name_variable_property
 
2783                 if (Scanner.TRACE) {
 
2784                         System.out.println("TRACE: dynamic_class_name_variable_properties()");
 
2786                 while (token == TokenNameMINUS_GREATER) {
 
2787                         dynamic_class_name_variable_property();
 
2791         private void dynamic_class_name_variable_property() {
 
2792                 // dynamic_class_name_variable_property:
 
2793                 // T_OBJECT_OPERATOR object_property
 
2794                 if (Scanner.TRACE) {
 
2795                         System.out.println("TRACE: dynamic_class_name_variable_property()");
 
2797                 if (token == TokenNameMINUS_GREATER) {
 
2803         private void ctor_arguments() {
 
2806                 // | '(' function_call_parameter_list ')'
 
2807                 if (token == TokenNameLPAREN) {
 
2809                         if (token == TokenNameRPAREN) {
 
2813                         non_empty_function_call_parameter_list();
 
2814                         if (token != TokenNameRPAREN) {
 
2815                                 throwSyntaxError("')' expected in ctor_arguments.");
 
2821         private void assignment_list() {
 
2823                 // assignment_list ',' assignment_list_element
 
2824                 // | assignment_list_element
 
2826                         assignment_list_element();
 
2827                         if (token != TokenNameCOMMA) {
 
2834         private void assignment_list_element() {
 
2835                 // assignment_list_element:
 
2837                 // | T_LIST '(' assignment_list ')'
 
2839                 if (token == TokenNameVariable) {
 
2840                         variable(true, false);
 
2841                 } else if (token == TokenNameDOLLAR) {
 
2842                         variable(false, false);
 
2844                         if (token == TokenNamelist) {
 
2846                                 if (token == TokenNameLPAREN) {
 
2849                                         if (token != TokenNameRPAREN) {
 
2850                                                 throwSyntaxError("')' expected after 'list' keyword.");
 
2854                                         throwSyntaxError("'(' expected after 'list' keyword.");
 
2860         private void array_pair_list() {
 
2863                 // | non_empty_array_pair_list possible_comma
 
2864                 non_empty_array_pair_list();
 
2865                 if (token == TokenNameCOMMA) {
 
2870         private void non_empty_array_pair_list() {
 
2871                 // non_empty_array_pair_list:
 
2872                 // non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr
 
2873                 // | non_empty_array_pair_list ',' expr
 
2874                 // | expr T_DOUBLE_ARROW expr
 
2876                 // | non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
 
2877                 // | non_empty_array_pair_list ',' '&' w_variable
 
2878                 // | expr T_DOUBLE_ARROW '&' w_variable
 
2881                         if (token == TokenNameAND) {
 
2883                                 variable(true, false);
 
2886                                 if (token == TokenNameAND) {
 
2888                                         variable(true, false);
 
2889                                 } else if (token == TokenNameEQUAL_GREATER) {
 
2891                                         if (token == TokenNameAND) {
 
2893                                                 variable(true, false);
 
2899                         if (token != TokenNameCOMMA) {
 
2903                         if (token == TokenNameRPAREN) {
 
2909         // private void variableList() {
 
2912         // if (token == TokenNameCOMMA) {
 
2919         private Expression variable_without_objects(boolean lefthandside, boolean ignoreVar) {
 
2920                 // variable_without_objects:
 
2921                 // reference_variable
 
2922                 // | simple_indirect_reference reference_variable
 
2923                 if (Scanner.TRACE) {
 
2924                         System.out.println("TRACE: variable_without_objects()");
 
2926                 while (token == TokenNameDOLLAR) {
 
2929                 return reference_variable(lefthandside, ignoreVar);
 
2932         private Expression function_call(boolean lefthandside, boolean ignoreVar) {
 
2934                 // T_STRING '(' function_call_parameter_list ')'
 
2935                 // | class_constant '(' function_call_parameter_list ')'
 
2936                 // | static_member '(' function_call_parameter_list ')'
 
2937                 // | variable_without_objects '(' function_call_parameter_list ')'
 
2938                 char[] defineName = null;
 
2939                 char[] ident = null;
 
2942                 Expression ref = null;
 
2943                 if (Scanner.TRACE) {
 
2944                         System.out.println("TRACE: function_call()");
 
2946                 if (token == TokenNameIdentifier) {
 
2947                         ident = scanner.getCurrentIdentifierSource();
 
2949                         startPos = scanner.getCurrentTokenStartPosition();
 
2950                         endPos = scanner.getCurrentTokenEndPosition();
 
2953                         case TokenNamePAAMAYIM_NEKUDOTAYIM:
 
2957                                 if (token == TokenNameIdentifier) {
 
2962                                         variable_without_objects(true, false);
 
2967                         ref = variable_without_objects(lefthandside, ignoreVar);
 
2969                 if (token != TokenNameLPAREN) {
 
2970                         if (defineName != null) {
 
2971                                 // does this identifier contain only uppercase characters?
 
2972                                 if (defineName.length == 3) {
 
2973                                         if (defineName[0] == 'd' && defineName[1] == 'i' && defineName[2] == 'e') {
 
2976                                 } else if (defineName.length == 4) {
 
2977                                         if (defineName[0] == 't' && defineName[1] == 'r' && defineName[2] == 'u' && defineName[3] == 'e') {
 
2979                                         } else if (defineName[0] == 'n' && defineName[1] == 'u' && defineName[2] == 'l' && defineName[3] == 'l') {
 
2982                                 } else if (defineName.length == 5) {
 
2983                                         if (defineName[0] == 'f' && defineName[1] == 'a' && defineName[2] == 'l' && defineName[3] == 's' && defineName[4] == 'e') {
 
2987                                 if (defineName != null) {
 
2988                                         for (int i = 0; i < defineName.length; i++) {
 
2989                                                 if (Character.isLowerCase(defineName[i])) {
 
2990                                                         problemReporter.phpUppercaseIdentifierWarning(startPos, endPos, referenceContext, compilationUnit.compilationResult);
 
2998                         if (token == TokenNameRPAREN) {
 
3002                         non_empty_function_call_parameter_list();
 
3003                         if (token != TokenNameRPAREN) {
 
3004                                 String functionName;
 
3005                                 if (ident == null) {
 
3006                                         functionName = new String(" ");
 
3008                                         functionName = new String(ident);
 
3010                                 throwSyntaxError("')' expected in function call (" + functionName + ").");
 
3017         // private void function_call_parameter_list() {
 
3018         // function_call_parameter_list:
 
3019         // non_empty_function_call_parameter_list { $$ = $1; }
 
3022         private void non_empty_function_call_parameter_list() {
 
3023                 // non_empty_function_call_parameter_list:
 
3024                 // expr_without_variable
 
3027                 // | non_empty_function_call_parameter_list ',' expr_without_variable
 
3028                 // | non_empty_function_call_parameter_list ',' variable
 
3029                 // | non_empty_function_call_parameter_list ',' '&' w_variable
 
3030                 if (Scanner.TRACE) {
 
3031                         System.out.println("TRACE: non_empty_function_call_parameter_list()");
 
3034                         if (token == TokenNameAND) {
 
3038                                 // if (token == TokenNameIdentifier || token ==
 
3039                                 // TokenNameVariable
 
3040                                 // || token == TokenNameDOLLAR) {
 
3043                                 expr_without_variable(true);
 
3046                         if (token != TokenNameCOMMA) {
 
3053         private void fully_qualified_class_name() {
 
3054                 if (token == TokenNameIdentifier) {
 
3057                         throwSyntaxError("Class name expected.");
 
3061         private void static_member() {
 
3063                 // fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM
 
3064                 // variable_without_objects
 
3065                 if (Scanner.TRACE) {
 
3066                         System.out.println("TRACE: static_member()");
 
3068                 fully_qualified_class_name();
 
3069                 if (token != TokenNamePAAMAYIM_NEKUDOTAYIM) {
 
3070                         throwSyntaxError("'::' expected after class name (static_member).");
 
3073                 variable_without_objects(false, false);
 
3076         private Expression base_variable_with_function_calls(boolean lefthandside, boolean ignoreVar) {
 
3077                 // base_variable_with_function_calls:
 
3080                 if (Scanner.TRACE) {
 
3081                         System.out.println("TRACE: base_variable_with_function_calls()");
 
3083                 return function_call(lefthandside, ignoreVar);
 
3086         private Expression base_variable(boolean lefthandside) {
 
3088                 // reference_variable
 
3089                 // | simple_indirect_reference reference_variable
 
3091                 Expression ref = null;
 
3092                 if (Scanner.TRACE) {
 
3093                         System.out.println("TRACE: base_variable()");
 
3095                 if (token == TokenNameIdentifier) {
 
3098                         while (token == TokenNameDOLLAR) {
 
3101                         reference_variable(lefthandside, false);
 
3106         // private void simple_indirect_reference() {
 
3107         // // simple_indirect_reference:
 
3109         // //| simple_indirect_reference '$'
 
3111         private Expression reference_variable(boolean lefthandside, boolean ignoreVar) {
 
3112                 // reference_variable:
 
3113                 // reference_variable '[' dim_offset ']'
 
3114                 // | reference_variable '{' expr '}'
 
3115                 // | compound_variable
 
3116                 Expression ref = null;
 
3117                 if (Scanner.TRACE) {
 
3118                         System.out.println("TRACE: reference_variable()");
 
3120                 ref = compound_variable(lefthandside, ignoreVar);
 
3122                         if (token == TokenNameLBRACE) {
 
3126                                 if (token != TokenNameRBRACE) {
 
3127                                         throwSyntaxError("'}' expected in reference variable.");
 
3130                         } else if (token == TokenNameLBRACKET) {
 
3131                                 // To remove "ref = null;" here, is probably better than the patch commented in #1368081 - axelcl
 
3133                                 if (token != TokenNameRBRACKET) {
 
3136                                         if (token != TokenNameRBRACKET) {
 
3137                                                 throwSyntaxError("']' expected in reference variable.");
 
3148         private Expression compound_variable(boolean lefthandside, boolean ignoreVar) {
 
3149                 // compound_variable:
 
3151                 // | '$' '{' expr '}'
 
3152                 if (Scanner.TRACE) {
 
3153                         System.out.println("TRACE: compound_variable()");
 
3155                 if (token == TokenNameVariable) {
 
3156                         if (!lefthandside) {
 
3157                                 if (!containsVariableSet()) {
 
3158                                         // reportSyntaxError("The local variable " + new
 
3159                                         // String(scanner.getCurrentIdentifierSource())
 
3160                                         // + " may not have been initialized");
 
3161                                         problemReporter.uninitializedLocalVariable(new String(scanner.getCurrentIdentifierSource()), scanner
 
3162                                                         .getCurrentTokenStartPosition(), scanner.getCurrentTokenEndPosition(), referenceContext,
 
3163                                                         compilationUnit.compilationResult);
 
3170                         FieldReference ref = new FieldReference(scanner.getCurrentIdentifierSource(), scanner.getCurrentTokenStartPosition());
 
3174                         // because of simple_indirect_reference
 
3175                         while (token == TokenNameDOLLAR) {
 
3178                         if (token != TokenNameLBRACE) {
 
3179                                 reportSyntaxError("'{' expected after compound variable token '$'.");
 
3184                         if (token != TokenNameRBRACE) {
 
3185                                 throwSyntaxError("'}' expected after compound variable token '$'.");
 
3190         } // private void dim_offset() { // // dim_offset: // // /* empty */
 
3195         private void object_property() {
 
3198                 // | variable_without_objects
 
3199                 if (Scanner.TRACE) {
 
3200                         System.out.println("TRACE: object_property()");
 
3202                 if (token == TokenNameVariable || token == TokenNameDOLLAR) {
 
3203                         variable_without_objects(false, false);
 
3209         private void object_dim_list() {
 
3211                 // object_dim_list '[' dim_offset ']'
 
3212                 // | object_dim_list '{' expr '}'
 
3214                 if (Scanner.TRACE) {
 
3215                         System.out.println("TRACE: object_dim_list()");
 
3219                         if (token == TokenNameLBRACE) {
 
3222                                 if (token != TokenNameRBRACE) {
 
3223                                         throwSyntaxError("'}' expected in object_dim_list.");
 
3226                         } else if (token == TokenNameLBRACKET) {
 
3228                                 if (token == TokenNameRBRACKET) {
 
3233                                 if (token != TokenNameRBRACKET) {
 
3234                                         throwSyntaxError("']' expected in object_dim_list.");
 
3243         private void variable_name() {
 
3247                 if (Scanner.TRACE) {
 
3248                         System.out.println("TRACE: variable_name()");
 
3250                 if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
 
3251                         if (token > TokenNameKEYWORD) {
 
3252                                 // TODO show a warning "Keyword used as variable" ?
 
3256                         if (token != TokenNameLBRACE) {
 
3257                                 throwSyntaxError("'{' expected in variable name.");
 
3261                         if (token != TokenNameRBRACE) {
 
3262                                 throwSyntaxError("'}' expected in variable name.");
 
3268         private void r_variable() {
 
3269                 variable(false, false);
 
3272         private void w_variable(boolean lefthandside) {
 
3273                 variable(lefthandside, false);
 
3276         private void rw_variable() {
 
3277                 variable(false, false);
 
3280         private Expression variable(boolean lefthandside, boolean ignoreVar) {
 
3282                 // base_variable_with_function_calls T_OBJECT_OPERATOR
 
3283                 // object_property method_or_not variable_properties
 
3284                 // | base_variable_with_function_calls
 
3285                 Expression ref = base_variable_with_function_calls(lefthandside, ignoreVar);
 
3286                 if (token == TokenNameMINUS_GREATER) {
 
3291                         variable_properties();
 
3296         private void variable_properties() {
 
3297                 // variable_properties:
 
3298                 // variable_properties variable_property
 
3300                 while (token == TokenNameMINUS_GREATER) {
 
3301                         variable_property();
 
3305         private void variable_property() {
 
3306                 // variable_property:
 
3307                 // T_OBJECT_OPERATOR object_property method_or_not
 
3308                 if (Scanner.TRACE) {
 
3309                         System.out.println("TRACE: variable_property()");
 
3311                 if (token == TokenNameMINUS_GREATER) {
 
3316                         throwSyntaxError("'->' expected in variable_property.");
 
3320         private Expression identifier(boolean lefthandside, boolean ignoreVar) {
 
3322                 // base_variable_with_function_calls T_OBJECT_OPERATOR
 
3323                 // object_property method_or_not variable_properties
 
3324                 // | base_variable_with_function_calls
 
3326                 // Expression ref = function_call(lefthandside, ignoreVar);
 
3329                 // T_STRING '(' function_call_parameter_list ')'
 
3330                 // | class_constant '(' function_call_parameter_list ')'
 
3331                 // | static_member '(' function_call_parameter_list ')'
 
3332                 // | variable_without_objects '(' function_call_parameter_list ')'
 
3333                 char[] defineName = null;
 
3334                 char[] ident = null;
 
3337                 Expression ref = null;
 
3338                 if (Scanner.TRACE) {
 
3339                         System.out.println("TRACE: function_call()");
 
3341                 if (token == TokenNameIdentifier) {
 
3342                         ident = scanner.getCurrentIdentifierSource();
 
3344                         startPos = scanner.getCurrentTokenStartPosition();
 
3345                         endPos = scanner.getCurrentTokenEndPosition();
 
3348                         if (token == TokenNameEQUAL || token == TokenNamePLUS_EQUAL || token == TokenNameMINUS_EQUAL
 
3349                                         || token == TokenNameMULTIPLY_EQUAL || token == TokenNameDIVIDE_EQUAL || token == TokenNameDOT_EQUAL
 
3350                                         || token == TokenNameREMAINDER_EQUAL || token == TokenNameAND_EQUAL || token == TokenNameOR_EQUAL
 
3351                                         || token == TokenNameXOR_EQUAL || token == TokenNameRIGHT_SHIFT_EQUAL || token == TokenNameLEFT_SHIFT_EQUAL) {
 
3352                                 String error = "Assignment operator '" + scanner.toStringAction(token) + "' not allowed after identifier '"
 
3353                                                 + new String(ident) + "' (use 'define(...)' to define constants).";
 
3354                                 reportSyntaxError(error);
 
3358                         case TokenNamePAAMAYIM_NEKUDOTAYIM:
 
3362                                 if (token == TokenNameIdentifier) {
 
3367                                         variable_without_objects(true, false);
 
3372                         ref = variable_without_objects(lefthandside, ignoreVar);
 
3374                 if (token != TokenNameLPAREN) {
 
3375                         if (defineName != null) {
 
3376                                 // does this identifier contain only uppercase characters?
 
3377                                 if (defineName.length == 3) {
 
3378                                         if (defineName[0] == 'd' && defineName[1] == 'i' && defineName[2] == 'e') {
 
3381                                 } else if (defineName.length == 4) {
 
3382                                         if (defineName[0] == 't' && defineName[1] == 'r' && defineName[2] == 'u' && defineName[3] == 'e') {
 
3384                                         } else if (defineName[0] == 'n' && defineName[1] == 'u' && defineName[2] == 'l' && defineName[3] == 'l') {
 
3387                                 } else if (defineName.length == 5) {
 
3388                                         if (defineName[0] == 'f' && defineName[1] == 'a' && defineName[2] == 'l' && defineName[3] == 's' && defineName[4] == 'e') {
 
3392                                 if (defineName != null) {
 
3393                                         for (int i = 0; i < defineName.length; i++) {
 
3394                                                 if (Character.isLowerCase(defineName[i])) {
 
3395                                                         problemReporter.phpUppercaseIdentifierWarning(startPos, endPos, referenceContext, compilationUnit.compilationResult);
 
3401                         // TODO is this ok ?
 
3403                         // throwSyntaxError("'(' expected in function call.");
 
3407                         if (token == TokenNameRPAREN) {
 
3411                                 non_empty_function_call_parameter_list();
 
3412                                 if (token != TokenNameRPAREN) {
 
3413                                         String functionName;
 
3414                                         if (ident == null) {
 
3415                                                 functionName = new String(" ");
 
3417                                                 functionName = new String(ident);
 
3419                                         throwSyntaxError("')' expected in function call (" + functionName + ").");
 
3424                 if (token == TokenNameMINUS_GREATER) {
 
3429                         variable_properties();
 
3434         private void method_or_not() {
 
3436                 // '(' function_call_parameter_list ')'
 
3438                 if (Scanner.TRACE) {
 
3439                         System.out.println("TRACE: method_or_not()");
 
3441                 if (token == TokenNameLPAREN) {
 
3443                         if (token == TokenNameRPAREN) {
 
3447                         non_empty_function_call_parameter_list();
 
3448                         if (token != TokenNameRPAREN) {
 
3449                                 throwSyntaxError("')' expected in method_or_not.");
 
3455         private void exit_expr() {
 
3459                 if (token != TokenNameLPAREN) {
 
3463                 if (token == TokenNameRPAREN) {
 
3468                 if (token != TokenNameRPAREN) {
 
3469                         throwSyntaxError("')' expected after keyword 'exit'");
 
3474         // private void encaps_list() {
 
3475         // // encaps_list encaps_var
 
3476         // // | encaps_list T_STRING
 
3477         // // | encaps_list T_NUM_STRING
 
3478         // // | encaps_list T_ENCAPSED_AND_WHITESPACE
 
3479         // // | encaps_list T_CHARACTER
 
3480         // // | encaps_list T_BAD_CHARACTER
 
3481         // // | encaps_list '['
 
3482         // // | encaps_list ']'
 
3483         // // | encaps_list '{'
 
3484         // // | encaps_list '}'
 
3485         // // | encaps_list T_OBJECT_OPERATOR
 
3489         // case TokenNameSTRING:
 
3492         // case TokenNameLBRACE:
 
3493         // // scanner.encapsedStringStack.pop();
 
3496         // case TokenNameRBRACE:
 
3497         // // scanner.encapsedStringStack.pop();
 
3500         // case TokenNameLBRACKET:
 
3501         // // scanner.encapsedStringStack.pop();
 
3504         // case TokenNameRBRACKET:
 
3505         // // scanner.encapsedStringStack.pop();
 
3508         // case TokenNameMINUS_GREATER:
 
3509         // // scanner.encapsedStringStack.pop();
 
3512         // case TokenNameVariable:
 
3513         // case TokenNameDOLLAR_LBRACE:
 
3514         // case TokenNameLBRACE_DOLLAR:
 
3518         // char encapsedChar = ((Character)
 
3519         // scanner.encapsedStringStack.peek()).charValue();
 
3520         // if (encapsedChar == '$') {
 
3521         // scanner.encapsedStringStack.pop();
 
3522         // encapsedChar = ((Character)
 
3523         // scanner.encapsedStringStack.peek()).charValue();
 
3524         // switch (encapsedChar) {
 
3526         // if (token == TokenNameEncapsedString0) {
 
3529         // token = TokenNameSTRING;
 
3532         // if (token == TokenNameEncapsedString1) {
 
3535         // token = TokenNameSTRING;
 
3538         // if (token == TokenNameEncapsedString2) {
 
3541         // token = TokenNameSTRING;
 
3550         // private void encaps_var() {
 
3552         // // | T_VARIABLE '[' encaps_var_offset ']'
 
3553         // // | T_VARIABLE T_OBJECT_OPERATOR T_STRING
 
3554         // // | T_DOLLAR_OPEN_CURLY_BRACES expr '}'
 
3555         // // | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
 
3556         // // | T_CURLY_OPEN variable '}'
 
3558         // case TokenNameVariable:
 
3560         // if (token == TokenNameLBRACKET) {
 
3562         // expr(); //encaps_var_offset();
 
3563         // if (token != TokenNameRBRACKET) {
 
3564         // throwSyntaxError("']' expected after variable.");
 
3566         // // scanner.encapsedStringStack.pop();
 
3569         // } else if (token == TokenNameMINUS_GREATER) {
 
3571         // if (token != TokenNameIdentifier) {
 
3572         // throwSyntaxError("Identifier expected after '->'.");
 
3574         // // scanner.encapsedStringStack.pop();
 
3578         // // // scanner.encapsedStringStack.pop();
 
3579         // // int tempToken = TokenNameSTRING;
 
3580         // // if (!scanner.encapsedStringStack.isEmpty()
 
3581         // // && (token == TokenNameEncapsedString0
 
3582         // // || token == TokenNameEncapsedString1
 
3583         // // || token == TokenNameEncapsedString2 || token ==
 
3584         // // TokenNameERROR)) {
 
3585         // // char encapsedChar = ((Character)
 
3586         // // scanner.encapsedStringStack.peek())
 
3588         // // switch (token) {
 
3589         // // case TokenNameEncapsedString0 :
 
3590         // // if (encapsedChar == '`') {
 
3591         // // tempToken = TokenNameEncapsedString0;
 
3594         // // case TokenNameEncapsedString1 :
 
3595         // // if (encapsedChar == '\'') {
 
3596         // // tempToken = TokenNameEncapsedString1;
 
3599         // // case TokenNameEncapsedString2 :
 
3600         // // if (encapsedChar == '"') {
 
3601         // // tempToken = TokenNameEncapsedString2;
 
3604         // // case TokenNameERROR :
 
3605         // // if (scanner.source[scanner.currentPosition - 1] == '\\') {
 
3606         // // scanner.currentPosition--;
 
3607         // // getNextToken();
 
3612         // // token = tempToken;
 
3615         // case TokenNameDOLLAR_LBRACE:
 
3617         // if (token == TokenNameDOLLAR_LBRACE) {
 
3619         // } else if (token == TokenNameIdentifier) {
 
3621         // if (token == TokenNameLBRACKET) {
 
3623         // // if (token == TokenNameRBRACKET) {
 
3624         // // getNextToken();
 
3627         // if (token != TokenNameRBRACKET) {
 
3628         // throwSyntaxError("']' expected after '${'.");
 
3636         // if (token != TokenNameRBRACE) {
 
3637         // throwSyntaxError("'}' expected.");
 
3641         // case TokenNameLBRACE_DOLLAR:
 
3643         // if (token == TokenNameLBRACE_DOLLAR) {
 
3645         // } else if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
 
3647         // if (token == TokenNameLBRACKET) {
 
3649         // // if (token == TokenNameRBRACKET) {
 
3650         // // getNextToken();
 
3653         // if (token != TokenNameRBRACKET) {
 
3654         // throwSyntaxError("']' expected.");
 
3658         // } else if (token == TokenNameMINUS_GREATER) {
 
3660         // if (token != TokenNameIdentifier && token != TokenNameVariable) {
 
3661         // throwSyntaxError("String or Variable token expected.");
 
3664         // if (token == TokenNameLBRACKET) {
 
3666         // // if (token == TokenNameRBRACKET) {
 
3667         // // getNextToken();
 
3670         // if (token != TokenNameRBRACKET) {
 
3671         // throwSyntaxError("']' expected after '${'.");
 
3677         // // if (token != TokenNameRBRACE) {
 
3678         // // throwSyntaxError("'}' expected after '{$'.");
 
3680         // // // scanner.encapsedStringStack.pop();
 
3681         // // getNextToken();
 
3684         // if (token != TokenNameRBRACE) {
 
3685         // throwSyntaxError("'}' expected.");
 
3687         // // scanner.encapsedStringStack.pop();
 
3694         // private void encaps_var_offset() {
 
3696         // // | T_NUM_STRING
 
3699         // case TokenNameSTRING:
 
3702         // case TokenNameIntegerLiteral:
 
3705         // case TokenNameVariable:
 
3708         // case TokenNameIdentifier:
 
3712         // throwSyntaxError("Variable or String token expected.");
 
3717         private void internal_functions_in_yacc() {
 
3720                 // case TokenNameisset:
 
3721                 // // T_ISSET '(' isset_variables ')'
 
3723                 // if (token != TokenNameLPAREN) {
 
3724                 // throwSyntaxError("'(' expected after keyword 'isset'");
 
3727                 // isset_variables();
 
3728                 // if (token != TokenNameRPAREN) {
 
3729                 // throwSyntaxError("')' expected after keyword 'isset'");
 
3733                 // case TokenNameempty:
 
3734                 // // T_EMPTY '(' variable ')'
 
3736                 // if (token != TokenNameLPAREN) {
 
3737                 // throwSyntaxError("'(' expected after keyword 'empty'");
 
3741                 // if (token != TokenNameRPAREN) {
 
3742                 // throwSyntaxError("')' expected after keyword 'empty'");
 
3746                 case TokenNameinclude:
 
3748                         checkFileName(token);
 
3750                 case TokenNameinclude_once:
 
3751                         // T_INCLUDE_ONCE expr
 
3752                         checkFileName(token);
 
3755                         // T_EVAL '(' expr ')'
 
3757                         if (token != TokenNameLPAREN) {
 
3758                                 throwSyntaxError("'(' expected after keyword 'eval'");
 
3762                         if (token != TokenNameRPAREN) {
 
3763                                 throwSyntaxError("')' expected after keyword 'eval'");
 
3767                 case TokenNamerequire:
 
3769                         checkFileName(token);
 
3771                 case TokenNamerequire_once:
 
3772                         // T_REQUIRE_ONCE expr
 
3773                         checkFileName(token);
 
3779          * Parse and check the include file name
 
3781          * @param includeToken
 
3783         private void checkFileName(int includeToken) {
 
3784                 // <include-token> expr
 
3785                 int start = scanner.getCurrentTokenStartPosition();
 
3786                 boolean hasLPAREN = false;
 
3788                 if (token == TokenNameLPAREN) {
 
3792                 Expression expression = expr();
 
3794                         if (token == TokenNameRPAREN) {
 
3797                                 throwSyntaxError("')' expected for keyword '" + scanner.toStringAction(includeToken) + "'");
 
3800                 char[] currTokenSource = scanner.getCurrentTokenSource(start);
 
3802                 if (scanner.compilationUnit != null) {
 
3803                         IResource resource = scanner.compilationUnit.getResource();
 
3804                         if (resource != null && resource instanceof IFile) {
 
3805                                 file = (IFile) resource;
 
3809                 tokens = new char[1][];
 
3810                 tokens[0] = currTokenSource;
 
3812                 ImportReference impt = new ImportReference(tokens, currTokenSource, start, scanner.getCurrentTokenEndPosition(), false);
 
3813                 impt.declarationSourceEnd = impt.sourceEnd;
 
3814                 impt.declarationEnd = impt.declarationSourceEnd;
 
3815                 // endPosition is just before the ;
 
3816                 impt.declarationSourceStart = start;
 
3817                 includesList.add(impt);
 
3819                 if (expression instanceof StringLiteral) {
 
3820                         StringLiteral literal = (StringLiteral) expression;
 
3821                         char[] includeName = literal.source();
 
3822                         if (includeName.length == 0) {
 
3823                                 reportSyntaxError("Empty filename after keyword '" + scanner.toStringAction(includeToken) + "'", literal.sourceStart,
 
3824                                                 literal.sourceStart + 1);
 
3826                         String includeNameString = new String(includeName);
 
3827                         if (literal instanceof StringLiteralDQ) {
 
3828                                 if (includeNameString.indexOf('$') >= 0) {
 
3829                                         // assuming that the filename contains a variable => no filename check
 
3833                         if (includeNameString.startsWith("http://")) {
 
3834                                 // assuming external include location
 
3838                                 // check the filename:
 
3839                                 // System.out.println(new String(compilationUnit.getFileName())+" - "+
 
3840                                 // expression.toStringExpression());
 
3841                                 IProject project = file.getProject();
 
3842                                 if (project != null) {
 
3843                                         IPath path = PHPFileUtil.determineFilePath(includeNameString, file, project);
 
3846                                                 // SyntaxError: "File: << >> doesn't exist in project."
 
3847                                                 String[] args = { expression.toStringExpression(), project.getLocation().toString() };
 
3848                                                 problemReporter.phpIncludeNotExistWarning(args, literal.sourceStart, literal.sourceEnd, referenceContext,
 
3849                                                                 compilationUnit.compilationResult);
 
3852                                                         String filePath = path.toString();
 
3853                                                         String ext = file.getRawLocation().getFileExtension();
 
3854                                                         int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
 
3856                                                         impt.tokens = CharOperation.splitOn('/', filePath.toCharArray(), 0, filePath.length() - fileExtensionLength);
 
3857                                                         impt.setFile(PHPFileUtil.createFile(path, project));
 
3858                                                 } catch (Exception e) {
 
3859                                                         // the file is outside of the workspace
 
3867         private void isset_variables() {
 
3869                 // | isset_variables ','
 
3870                 if (token == TokenNameRPAREN) {
 
3871                         throwSyntaxError("Variable expected after keyword 'isset'");
 
3874                         variable(true, false);
 
3875                         if (token == TokenNameCOMMA) {
 
3883         private boolean common_scalar() {
 
3887                 // | T_CONSTANT_ENCAPSED_STRING
 
3894                 case TokenNameIntegerLiteral:
 
3897                 case TokenNameDoubleLiteral:
 
3900                 case TokenNameStringDoubleQuote:
 
3903                 case TokenNameStringSingleQuote:
 
3906                 case TokenNameStringInterpolated:
 
3915                 case TokenNameCLASS_C:
 
3918                 case TokenNameMETHOD_C:
 
3921                 case TokenNameFUNC_C:
 
3928         private void scalar() {
 
3931                 // | T_STRING_VARNAME
 
3934                 // | '"' encaps_list '"'
 
3935                 // | '\'' encaps_list '\''
 
3936                 // | T_START_HEREDOC encaps_list T_END_HEREDOC
 
3937                 throwSyntaxError("Not yet implemented (scalar).");
 
3940         private void static_scalar() {
 
3941                 // static_scalar: /* compile-time evaluated scalars */
 
3944                 // | '+' static_scalar
 
3945                 // | '-' static_scalar
 
3946                 // | T_ARRAY '(' static_array_pair_list ')'
 
3947                 // | static_class_constant
 
3948                 if (common_scalar()) {
 
3952                 case TokenNameIdentifier:
 
3954                         // static_class_constant:
 
3955                         // T_STRING T_PAAMAYIM_NEKUDOTAYIM T_STRING
 
3956                         if (token == TokenNamePAAMAYIM_NEKUDOTAYIM) {
 
3958                                 if (token == TokenNameIdentifier) {
 
3961                                         throwSyntaxError("Identifier expected after '::' operator.");
 
3965                 case TokenNameEncapsedString0:
 
3967                                 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
3968                                 while (scanner.currentCharacter != '`') {
 
3969                                         if (scanner.currentCharacter == '\\') {
 
3970                                                 scanner.currentPosition++;
 
3972                                         scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
3975                         } catch (IndexOutOfBoundsException e) {
 
3976                                 throwSyntaxError("'`' expected at end of static string.");
 
3979                 // case TokenNameEncapsedString1:
 
3981                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
3982                 // while (scanner.currentCharacter != '\'') {
 
3983                 // if (scanner.currentCharacter == '\\') {
 
3984                 // scanner.currentPosition++;
 
3986                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
3989                 // } catch (IndexOutOfBoundsException e) {
 
3990                 // throwSyntaxError("'\'' expected at end of static string.");
 
3993                 // case TokenNameEncapsedString2:
 
3995                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
3996                 // while (scanner.currentCharacter != '"') {
 
3997                 // if (scanner.currentCharacter == '\\') {
 
3998                 // scanner.currentPosition++;
 
4000                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
 
4003                 // } catch (IndexOutOfBoundsException e) {
 
4004                 // throwSyntaxError("'\"' expected at end of static string.");
 
4007                 case TokenNameStringSingleQuote:
 
4010                 case TokenNameStringDoubleQuote:
 
4017                 case TokenNameMINUS:
 
4021                 case TokenNamearray:
 
4023                         if (token != TokenNameLPAREN) {
 
4024                                 throwSyntaxError("'(' expected after keyword 'array'");
 
4027                         if (token == TokenNameRPAREN) {
 
4031                         non_empty_static_array_pair_list();
 
4032                         if (token != TokenNameRPAREN) {
 
4033                                 throwSyntaxError("')' or ',' expected after keyword 'array'");
 
4037                 // case TokenNamenull :
 
4040                 // case TokenNamefalse :
 
4043                 // case TokenNametrue :
 
4047                         throwSyntaxError("Static scalar/constant expected.");
 
4051         private void non_empty_static_array_pair_list() {
 
4052                 // non_empty_static_array_pair_list:
 
4053                 // non_empty_static_array_pair_list ',' static_scalar T_DOUBLE_ARROW
 
4055                 // | non_empty_static_array_pair_list ',' static_scalar
 
4056                 // | static_scalar T_DOUBLE_ARROW static_scalar
 
4060                         if (token == TokenNameEQUAL_GREATER) {
 
4064                         if (token != TokenNameCOMMA) {
 
4068                         if (token == TokenNameRPAREN) {
 
4074         // public void reportSyntaxError() { //int act, int currentKind, int
 
4075         // // stateStackTop) {
 
4076         // /* remember current scanner position */
 
4077         // int startPos = scanner.startPosition;
 
4078         // int currentPos = scanner.currentPosition;
 
4080         // this.checkAndReportBracketAnomalies(problemReporter());
 
4081         // /* reset scanner where it was */
 
4082         // scanner.startPosition = startPos;
 
4083         // scanner.currentPosition = currentPos;
 
4086         public static final int RoundBracket = 0;
 
4088         public static final int SquareBracket = 1;
 
4090         public static final int CurlyBracket = 2;
 
4092         public static final int BracketKinds = 3;
 
4094         protected int[] nestedMethod; // the ptr is nestedType
 
4096         protected int nestedType, dimensions;
 
4098         // variable set stack
 
4099         final static int VariableStackIncrement = 10;
 
4101         HashMap fTypeVariables = null;
 
4103         HashMap fMethodVariables = null;
 
4105         ArrayList fStackUnassigned = new ArrayList();
 
4108         final static int AstStackIncrement = 100;
 
4110         protected int astPtr;
 
4112         protected ASTNode[] astStack = new ASTNode[AstStackIncrement];
 
4114         protected int astLengthPtr;
 
4116         protected int[] astLengthStack;
 
4118         ASTNode[] noAstNodes = new ASTNode[AstStackIncrement];
 
4120         public CompilationUnitDeclaration compilationUnit; /*
 
4121                                                                                                                                                                                                                          * the result from parse()
 
4124         protected ReferenceContext referenceContext;
 
4126         protected ProblemReporter problemReporter;
 
4128         protected CompilerOptions options;
 
4130         private ArrayList includesList;
 
4132         // protected CompilationResult compilationResult;
 
4134          * Returns this parser's problem reporter initialized with its reference
 
4135          * context. Also it is assumed that a problem is going to be reported, so
 
4136          * initializes the compilation result's line positions.
 
4138         public ProblemReporter problemReporter() {
 
4139                 if (scanner.recordLineSeparator) {
 
4140                         compilationUnit.compilationResult.lineSeparatorPositions = scanner.getLineEnds();
 
4142                 problemReporter.referenceContext = referenceContext;
 
4143                 return problemReporter;
 
4147          * Reconsider the entire source looking for inconsistencies in {} () []
 
4149         // public boolean checkAndReportBracketAnomalies(ProblemReporter
 
4150         // problemReporter) {
 
4151         // scanner.wasAcr = false;
 
4152         // boolean anomaliesDetected = false;
 
4154         // char[] source = scanner.source;
 
4155         // int[] leftCount = { 0, 0, 0 };
 
4156         // int[] rightCount = { 0, 0, 0 };
 
4157         // int[] depths = { 0, 0, 0 };
 
4158         // int[][] leftPositions = new int[][] { new int[10], new int[10], new int[10]
 
4160         // int[][] leftDepths = new int[][] { new int[10], new int[10], new int[10] };
 
4161         // int[][] rightPositions = new int[][] { new int[10], new int[10], new
 
4163         // int[][] rightDepths = new int[][] { new int[10], new int[10], new int[10]
 
4165         // scanner.currentPosition = scanner.initialPosition; //starting
 
4167         // // (first-zero-based
 
4169         // while (scanner.currentPosition < scanner.eofPosition) { //loop for
 
4174         // // ---------Consume white space and handles
 
4175         // // startPosition---------
 
4176         // boolean isWhiteSpace;
 
4178         // scanner.startPosition = scanner.currentPosition;
 
4179         // // if (((scanner.currentCharacter =
 
4180         // // source[scanner.currentPosition++]) == '\\') &&
 
4181         // // (source[scanner.currentPosition] == 'u')) {
 
4182         // // isWhiteSpace = scanner.jumpOverUnicodeWhiteSpace();
 
4184         // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
 
4185         // (scanner.currentCharacter == '\n'))) {
 
4186         // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
 
4187         // // only record line positions we have not
 
4189         // scanner.pushLineSeparator();
 
4192         // isWhiteSpace = CharOperation.isWhitespace(scanner.currentCharacter);
 
4194         // } while (isWhiteSpace && (scanner.currentPosition < scanner.eofPosition));
 
4195         // // -------consume token until } is found---------
 
4196         // switch (scanner.currentCharacter) {
 
4198         // int index = leftCount[CurlyBracket]++;
 
4199         // if (index == leftPositions[CurlyBracket].length) {
 
4200         // System.arraycopy(leftPositions[CurlyBracket], 0,
 
4201         // (leftPositions[CurlyBracket] = new int[index * 2]), 0, index);
 
4202         // System.arraycopy(leftDepths[CurlyBracket], 0, (leftDepths[CurlyBracket] =
 
4203         // new int[index * 2]), 0, index);
 
4205         // leftPositions[CurlyBracket][index] = scanner.startPosition;
 
4206         // leftDepths[CurlyBracket][index] = depths[CurlyBracket]++;
 
4210         // int index = rightCount[CurlyBracket]++;
 
4211         // if (index == rightPositions[CurlyBracket].length) {
 
4212         // System.arraycopy(rightPositions[CurlyBracket], 0,
 
4213         // (rightPositions[CurlyBracket] = new int[index * 2]), 0, index);
 
4214         // System.arraycopy(rightDepths[CurlyBracket], 0, (rightDepths[CurlyBracket] =
 
4215         // new int[index * 2]), 0, index);
 
4217         // rightPositions[CurlyBracket][index] = scanner.startPosition;
 
4218         // rightDepths[CurlyBracket][index] = --depths[CurlyBracket];
 
4222         // int index = leftCount[RoundBracket]++;
 
4223         // if (index == leftPositions[RoundBracket].length) {
 
4224         // System.arraycopy(leftPositions[RoundBracket], 0,
 
4225         // (leftPositions[RoundBracket] = new int[index * 2]), 0, index);
 
4226         // System.arraycopy(leftDepths[RoundBracket], 0, (leftDepths[RoundBracket] =
 
4227         // new int[index * 2]), 0, index);
 
4229         // leftPositions[RoundBracket][index] = scanner.startPosition;
 
4230         // leftDepths[RoundBracket][index] = depths[RoundBracket]++;
 
4234         // int index = rightCount[RoundBracket]++;
 
4235         // if (index == rightPositions[RoundBracket].length) {
 
4236         // System.arraycopy(rightPositions[RoundBracket], 0,
 
4237         // (rightPositions[RoundBracket] = new int[index * 2]), 0, index);
 
4238         // System.arraycopy(rightDepths[RoundBracket], 0, (rightDepths[RoundBracket] =
 
4239         // new int[index * 2]), 0, index);
 
4241         // rightPositions[RoundBracket][index] = scanner.startPosition;
 
4242         // rightDepths[RoundBracket][index] = --depths[RoundBracket];
 
4246         // int index = leftCount[SquareBracket]++;
 
4247         // if (index == leftPositions[SquareBracket].length) {
 
4248         // System.arraycopy(leftPositions[SquareBracket], 0,
 
4249         // (leftPositions[SquareBracket] = new int[index * 2]), 0, index);
 
4250         // System.arraycopy(leftDepths[SquareBracket], 0, (leftDepths[SquareBracket] =
 
4251         // new int[index * 2]), 0, index);
 
4253         // leftPositions[SquareBracket][index] = scanner.startPosition;
 
4254         // leftDepths[SquareBracket][index] = depths[SquareBracket]++;
 
4258         // int index = rightCount[SquareBracket]++;
 
4259         // if (index == rightPositions[SquareBracket].length) {
 
4260         // System.arraycopy(rightPositions[SquareBracket], 0,
 
4261         // (rightPositions[SquareBracket] = new int[index * 2]), 0, index);
 
4262         // System.arraycopy(rightDepths[SquareBracket], 0, (rightDepths[SquareBracket]
 
4263         // = new int[index * 2]), 0, index);
 
4265         // rightPositions[SquareBracket][index] = scanner.startPosition;
 
4266         // rightDepths[SquareBracket][index] = --depths[SquareBracket];
 
4270         // if (scanner.getNextChar('\\')) {
 
4271         // scanner.scanEscapeCharacter();
 
4272         // } else { // consume next character
 
4273         // scanner.unicodeAsBackSlash = false;
 
4274         // // if (((scanner.currentCharacter =
 
4275         // // source[scanner.currentPosition++]) ==
 
4277         // // (source[scanner.currentPosition] ==
 
4279         // // scanner.getNextUnicodeChar();
 
4281         // if (scanner.withoutUnicodePtr != 0) {
 
4282         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
 
4283         // scanner.currentCharacter;
 
4287         // scanner.getNextChar('\'');
 
4291         // // consume next character
 
4292         // scanner.unicodeAsBackSlash = false;
 
4293         // // if (((scanner.currentCharacter =
 
4294         // // source[scanner.currentPosition++]) == '\\') &&
 
4295         // // (source[scanner.currentPosition] == 'u')) {
 
4296         // // scanner.getNextUnicodeChar();
 
4298         // if (scanner.withoutUnicodePtr != 0) {
 
4299         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
 
4300         // scanner.currentCharacter;
 
4303         // while (scanner.currentCharacter != '"') {
 
4304         // if (scanner.currentCharacter == '\r') {
 
4305         // if (source[scanner.currentPosition] == '\n')
 
4306         // scanner.currentPosition++;
 
4307         // break; // the string cannot go further that
 
4310         // if (scanner.currentCharacter == '\n') {
 
4311         // break; // the string cannot go further that
 
4314         // if (scanner.currentCharacter == '\\') {
 
4315         // scanner.scanEscapeCharacter();
 
4317         // // consume next character
 
4318         // scanner.unicodeAsBackSlash = false;
 
4319         // // if (((scanner.currentCharacter =
 
4320         // // source[scanner.currentPosition++]) == '\\')
 
4321         // // && (source[scanner.currentPosition] == 'u'))
 
4323         // // scanner.getNextUnicodeChar();
 
4325         // if (scanner.withoutUnicodePtr != 0) {
 
4326         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
 
4327         // scanner.currentCharacter;
 
4334         // if ((test = scanner.getNextChar('/', '*')) == 0) { //line
 
4336         // //get the next char
 
4337         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
 
4339         // && (source[scanner.currentPosition] == 'u')) {
 
4340         // //-------------unicode traitement
 
4342         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
 
4343         // scanner.currentPosition++;
 
4344         // while (source[scanner.currentPosition] == 'u') {
 
4345         // scanner.currentPosition++;
 
4347         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
 
4349         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4351         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4353         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4354         // || c4 < 0) { //error
 
4358         // scanner.currentCharacter = 'A';
 
4359         // } //something different from \n and \r
 
4361         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
 
4364         // while (scanner.currentCharacter != '\r' && scanner.currentCharacter !=
 
4366         // //get the next char
 
4367         // scanner.startPosition = scanner.currentPosition;
 
4368         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
 
4370         // && (source[scanner.currentPosition] == 'u')) {
 
4371         // //-------------unicode traitement
 
4373         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
 
4374         // scanner.currentPosition++;
 
4375         // while (source[scanner.currentPosition] == 'u') {
 
4376         // scanner.currentPosition++;
 
4378         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
 
4380         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4382         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4384         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4385         // || c4 < 0) { //error
 
4389         // scanner.currentCharacter = 'A';
 
4390         // } //something different from \n
 
4393         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
 
4397         // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
 
4398         // (scanner.currentCharacter == '\n'))) {
 
4399         // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
 
4400         // // only record line positions we
 
4401         // // have not recorded yet
 
4402         // scanner.pushLineSeparator();
 
4403         // if (this.scanner.taskTags != null) {
 
4404         // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
 
4406         // .getCurrentTokenEndPosition());
 
4412         // if (test > 0) { //traditional and annotation
 
4414         // boolean star = false;
 
4415         // // consume next character
 
4416         // scanner.unicodeAsBackSlash = false;
 
4417         // // if (((scanner.currentCharacter =
 
4418         // // source[scanner.currentPosition++]) ==
 
4420         // // (source[scanner.currentPosition] ==
 
4422         // // scanner.getNextUnicodeChar();
 
4424         // if (scanner.withoutUnicodePtr != 0) {
 
4425         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
 
4426         // scanner.currentCharacter;
 
4429         // if (scanner.currentCharacter == '*') {
 
4432         // //get the next char
 
4433         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
 
4435         // && (source[scanner.currentPosition] == 'u')) {
 
4436         // //-------------unicode traitement
 
4438         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
 
4439         // scanner.currentPosition++;
 
4440         // while (source[scanner.currentPosition] == 'u') {
 
4441         // scanner.currentPosition++;
 
4443         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
 
4445         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4447         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4449         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4450         // || c4 < 0) { //error
 
4454         // scanner.currentCharacter = 'A';
 
4455         // } //something different from * and /
 
4457         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
 
4460         // //loop until end of comment */
 
4461         // while ((scanner.currentCharacter != '/') || (!star)) {
 
4462         // star = scanner.currentCharacter == '*';
 
4464         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
 
4466         // && (source[scanner.currentPosition] == 'u')) {
 
4467         // //-------------unicode traitement
 
4469         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
 
4470         // scanner.currentPosition++;
 
4471         // while (source[scanner.currentPosition] == 'u') {
 
4472         // scanner.currentPosition++;
 
4474         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
 
4476         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4478         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4480         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
 
4481         // || c4 < 0) { //error
 
4485         // scanner.currentCharacter = 'A';
 
4486         // } //something different from * and
 
4489         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
 
4493         // if (this.scanner.taskTags != null) {
 
4494         // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
 
4495         // this.scanner.getCurrentTokenEndPosition());
 
4502         // if (Scanner.isPHPIdentifierStart(scanner.currentCharacter)) {
 
4503         // scanner.scanIdentifierOrKeyword(false);
 
4506         // if (Character.isDigit(scanner.currentCharacter)) {
 
4507         // scanner.scanNumber(false);
 
4511         // //-----------------end switch while
 
4512         // // try--------------------
 
4513         // } catch (IndexOutOfBoundsException e) {
 
4514         // break; // read until EOF
 
4515         // } catch (InvalidInputException e) {
 
4516         // return false; // no clue
 
4519         // if (scanner.recordLineSeparator) {
 
4520         // compilationUnit.compilationResult.lineSeparatorPositions =
 
4521         // scanner.getLineEnds();
 
4523         // // check placement anomalies against other kinds of brackets
 
4524         // for (int kind = 0; kind < BracketKinds; kind++) {
 
4525         // for (int leftIndex = leftCount[kind] - 1; leftIndex >= 0; leftIndex--) {
 
4526         // int start = leftPositions[kind][leftIndex]; // deepest
 
4528         // // find matching closing bracket
 
4529         // int depth = leftDepths[kind][leftIndex];
 
4531         // for (int i = 0; i < rightCount[kind]; i++) {
 
4532         // int pos = rightPositions[kind][i];
 
4533         // // want matching bracket further in source with same
 
4535         // if ((pos > start) && (depth == rightDepths[kind][i])) {
 
4540         // if (end < 0) { // did not find a good closing match
 
4541         // problemReporter.unmatchedBracket(start, referenceContext,
 
4542         // compilationUnit.compilationResult);
 
4545         // // check if even number of opening/closing other brackets
 
4546         // // in between this pair of brackets
 
4548         // for (int otherKind = 0; (balance == 0) && (otherKind < BracketKinds);
 
4550         // for (int i = 0; i < leftCount[otherKind]; i++) {
 
4551         // int pos = leftPositions[otherKind][i];
 
4552         // if ((pos > start) && (pos < end))
 
4555         // for (int i = 0; i < rightCount[otherKind]; i++) {
 
4556         // int pos = rightPositions[otherKind][i];
 
4557         // if ((pos > start) && (pos < end))
 
4560         // if (balance != 0) {
 
4561         // problemReporter.unmatchedBracket(start, referenceContext,
 
4562         // compilationUnit.compilationResult); //bracket
 
4568         // // too many opening brackets ?
 
4569         // for (int i = rightCount[kind]; i < leftCount[kind]; i++) {
 
4570         // anomaliesDetected = true;
 
4571         // problemReporter.unmatchedBracket(leftPositions[kind][leftCount[kind] - i -
 
4572         // 1], referenceContext,
 
4573         // compilationUnit.compilationResult);
 
4575         // // too many closing brackets ?
 
4576         // for (int i = leftCount[kind]; i < rightCount[kind]; i++) {
 
4577         // anomaliesDetected = true;
 
4578         // problemReporter.unmatchedBracket(rightPositions[kind][i], referenceContext,
 
4579         // compilationUnit.compilationResult);
 
4581         // if (anomaliesDetected)
 
4584         // return anomaliesDetected;
 
4585         // } catch (ArrayStoreException e) { // jdk1.2.2 jit bug
 
4586         // return anomaliesDetected;
 
4587         // } catch (NullPointerException e) { // jdk1.2.2 jit bug
 
4588         // return anomaliesDetected;
 
4591         protected void pushOnAstLengthStack(int pos) {
 
4593                         astLengthStack[++astLengthPtr] = pos;
 
4594                 } catch (IndexOutOfBoundsException e) {
 
4595                         int oldStackLength = astLengthStack.length;
 
4596                         int[] oldPos = astLengthStack;
 
4597                         astLengthStack = new int[oldStackLength + StackIncrement];
 
4598                         System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
 
4599                         astLengthStack[astLengthPtr] = pos;
 
4603         protected void pushOnAstStack(ASTNode node) {
 
4605                  * add a new obj on top of the ast stack
 
4608                         astStack[++astPtr] = node;
 
4609                 } catch (IndexOutOfBoundsException e) {
 
4610                         int oldStackLength = astStack.length;
 
4611                         ASTNode[] oldStack = astStack;
 
4612                         astStack = new ASTNode[oldStackLength + AstStackIncrement];
 
4613                         System.arraycopy(oldStack, 0, astStack, 0, oldStackLength);
 
4614                         astPtr = oldStackLength;
 
4615                         astStack[astPtr] = node;
 
4618                         astLengthStack[++astLengthPtr] = 1;
 
4619                 } catch (IndexOutOfBoundsException e) {
 
4620                         int oldStackLength = astLengthStack.length;
 
4621                         int[] oldPos = astLengthStack;
 
4622                         astLengthStack = new int[oldStackLength + AstStackIncrement];
 
4623                         System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
 
4624                         astLengthStack[astLengthPtr] = 1;
 
4628         protected void resetModifiers() {
 
4629                 this.modifiers = AccDefault;
 
4630                 this.modifiersSourceStart = -1; // <-- see comment into
 
4631                 // modifiersFlag(int)
 
4632                 this.scanner.commentPtr = -1;
 
4635         protected void consumePackageDeclarationName(IFile file) {
 
4636                 // create a package name similar to java package names
 
4637                 String projectPath = ProjectPrefUtil.getDocumentRoot(file.getProject()).toString();
 
4638                 String filePath = file.getRawLocation().toString();
 
4639                 String ext = file.getRawLocation().getFileExtension();
 
4640                 int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
 
4641                 ImportReference impt;
 
4643                 if (filePath.startsWith(projectPath)) {
 
4644                         tokens = CharOperation
 
4645                                         .splitOn('/', filePath.toCharArray(), projectPath.length() + 1, filePath.length() - fileExtensionLength);
 
4647                         String name = file.getName();
 
4648                         tokens = new char[1][];
 
4649                         tokens[0] = name.substring(0, name.length() - fileExtensionLength).toCharArray();
 
4652                 this.compilationUnit.currentPackage = impt = new ImportReference(tokens, new char[0], 0, 0, true);
 
4654                 impt.declarationSourceStart = 0;
 
4655                 impt.declarationSourceEnd = 0;
 
4656                 impt.declarationEnd = 0;
 
4657                 // endPosition is just before the ;
 
4661         public final static String[] GLOBALS = { "$this", "$_COOKIE", "$_ENV", "$_FILES", "$_GET", "$GLOBALS", "$_POST", "$_REQUEST",
 
4662                         "$_SESSION", "$_SERVER" };
 
4667         private void pushFunctionVariableSet() {
 
4668                 HashSet set = new HashSet();
 
4669                 if (fStackUnassigned.isEmpty()) {
 
4670                         for (int i = 0; i < GLOBALS.length; i++) {
 
4671                                 set.add(GLOBALS[i]);
 
4674                 fStackUnassigned.add(set);
 
4677         private void pushIfVariableSet() {
 
4678                 if (!fStackUnassigned.isEmpty()) {
 
4679                         HashSet set = new HashSet();
 
4680                         fStackUnassigned.add(set);
 
4684         private HashSet removeIfVariableSet() {
 
4685                 if (!fStackUnassigned.isEmpty()) {
 
4686                         return (HashSet) fStackUnassigned.remove(fStackUnassigned.size() - 1);
 
4692          * Returns the <i>set of assigned variables </i> returns null if no Set is
 
4693          * defined at the current scanner position
 
4695         private HashSet peekVariableSet() {
 
4696                 if (!fStackUnassigned.isEmpty()) {
 
4697                         return (HashSet) fStackUnassigned.get(fStackUnassigned.size() - 1);
 
4703          * add the current identifier source to the <i>set of assigned variables </i>
 
4707         private void addVariableSet(HashSet set) {
 
4709                         set.add(new String(scanner.getCurrentTokenSource()));
 
4714          * add the current identifier source to the <i>set of assigned variables </i>
 
4717         private void addVariableSet() {
 
4718                 HashSet set = peekVariableSet();
 
4720                         set.add(new String(scanner.getCurrentTokenSource()));
 
4725          * add the current identifier source to the <i>set of assigned variables </i>
 
4728         private void addVariableSet(char[] token) {
 
4729                 HashSet set = peekVariableSet();
 
4731                         set.add(new String(token));
 
4736          * check if the current identifier source is in the <i>set of assigned
 
4737          * variables </i> Returns true, if no set is defined for the current scanner
 
4741         private boolean containsVariableSet() {
 
4742                 return containsVariableSet(scanner.getCurrentTokenSource());
 
4745         private boolean containsVariableSet(char[] token) {
 
4747                 if (!fStackUnassigned.isEmpty()) {
 
4749                         String str = new String(token);
 
4750                         for (int i = 0; i < fStackUnassigned.size(); i++) {
 
4751                                 set = (HashSet) fStackUnassigned.get(i);
 
4752                                 if (set.contains(str)) {