Fix #1368081: First suggestion in #1368081 seems to be working better
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / Parser.java
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
5  *
6  * Contributors: www.phpeclipse.de
7  **********************************************************************************************************************************/
8 package net.sourceforge.phpdt.internal.compiler.parser;
9
10 import java.util.ArrayList;
11 import java.util.HashMap;
12 import java.util.HashSet;
13
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;
54
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;
59
60 public class Parser implements ITerminalSymbols, CompilerModifiers, ParserBasicInformation {
61         protected final static int StackIncrement = 255;
62
63         protected int stateStackTop;
64
65         // protected int[] stack = new int[StackIncrement];
66
67         public int firstToken; // handle for multiple parsing goals
68
69         public int lastAct; // handle for multiple parsing goals
70
71         // protected RecoveredElement currentElement;
72
73         public static boolean VERBOSE_RECOVERY = false;
74
75         protected boolean diet = false; // tells the scanner to jump over some
76
77         /**
78          * the PHP token scanner
79          */
80         public Scanner scanner;
81
82         int token;
83
84         protected int modifiers;
85
86         protected int modifiersSourceStart;
87
88         protected Parser(ProblemReporter problemReporter) {
89                 this.problemReporter = problemReporter;
90                 this.options = problemReporter.options;
91                 this.token = TokenNameEOF;
92                 this.initializeScanner();
93         }
94
95         public void setFileToParse(IFile fileToParse) {
96                 this.token = TokenNameEOF;
97                 this.initializeScanner();
98         }
99
100         /**
101          * ClassDeclaration Constructor.
102          *
103          * @param s
104          * @param sess
105          *          Description of Parameter
106          * @see
107          */
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]));
113                 // }
114                 // }
115                 // this.currentPHPString = 0;
116                 // PHPParserSuperclass.fileToParse = fileToParse;
117                 // this.phpList = null;
118                 this.includesList = null;
119                 // this.str = "";
120                 this.token = TokenNameEOF;
121                 // this.chIndx = 0;
122                 // this.rowCount = 1;
123                 // this.columnCount = 0;
124                 // this.phpEnd = false;
125                 // getNextToken();
126                 this.initializeScanner();
127         }
128
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 */);
133         }
134
135         /**
136          * Create marker for the parse error
137          */
138         // private void setMarker(String message, int charStart, int charEnd, int
139         // errorLevel) {
140         // setMarker(fileToParse, message, charStart, charEnd, errorLevel);
141         // }
142         /**
143          * This method will throw the SyntaxError. It will add the good lines and
144          * columns to the Error
145          *
146          * @param error
147          *          the error message
148          * @throws SyntaxError
149          *           the error raised
150          */
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;
158                         }
159                 }
160                 throwSyntaxError(error, problemStartPosition, problemEndPosition);
161         }
162
163         /**
164          * This method will throw the SyntaxError. It will add the good lines and
165          * columns to the Error
166          *
167          * @param error
168          *          the error message
169          * @throws SyntaxError
170          *           the error raised
171          */
172         // private void throwSyntaxError(String error, int startRow) {
173         // throw new SyntaxError(startRow, 0, " ", error);
174         // }
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);
179                 }
180                 throw new SyntaxError(1, 0, " ", error);
181         }
182
183         private void reportSyntaxError(String error) {
184                 int problemStartPosition = scanner.getCurrentTokenStartPosition();
185                 int problemEndPosition = scanner.getCurrentTokenEndPosition();
186                 reportSyntaxError(error, problemStartPosition, problemEndPosition + 1);
187         }
188
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);
193                 }
194         }
195
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);
202         // }
203         // }
204
205         /**
206          * gets the next token from input
207          */
208         private void getNextToken() {
209                 try {
210                         token = scanner.getNextToken();
211                         if (Scanner.DEBUG) {
212                                 int currentEndPosition = scanner.getCurrentTokenEndPosition();
213                                 int currentStartPosition = scanner.getCurrentTokenStartPosition();
214                                 System.out.print(currentStartPosition + "," + currentEndPosition + ": ");
215                                 System.out.println(scanner.toStringAction(token));
216                         }
217                 } catch (InvalidInputException e) {
218                         token = TokenNameERROR;
219                         String detailedMessage = e.getMessage();
220
221                         if (detailedMessage == Scanner.UNTERMINATED_STRING) {
222                                 throwSyntaxError("Unterminated string.");
223                         } else if (detailedMessage == Scanner.UNTERMINATED_COMMENT) {
224                                 throwSyntaxError("Unterminated commment.");
225                         }
226                 }
227                 return;
228         }
229
230         public void init(String s) {
231                 // this.str = s;
232                 this.token = TokenNameEOF;
233                 this.includesList = new ArrayList();
234                 // this.chIndx = 0;
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);
242                 astPtr = 0;
243         }
244
245         protected void initialize(boolean phpMode) {
246                 initialize(phpMode, null);
247         }
248
249         protected void initialize(boolean phpMode, IdentifierIndexManager indexManager) {
250                 compilationUnit = null;
251                 referenceContext = null;
252                 this.includesList = new ArrayList();
253                 // this.indexManager = indexManager;
254                 // this.str = "";
255                 this.token = TokenNameEOF;
256                 // this.chIndx = 0;
257                 // this.rowCount = 1;
258                 // this.columnCount = 0;
259                 // this.phpEnd = false;
260                 // this.phpMode = phpMode;
261                 scanner.setPHPMode(phpMode);
262                 astPtr = 0;
263         }
264
265         /**
266          * Parses a string with php tags i.e. '&lt;body&gt; &lt;?php phpinfo() ?&gt;
267          * &lt;/body&gt;'
268          */
269         public void parse(String s) {
270                 parse(s, null);
271         }
272
273         /**
274          * Parses a string with php tags i.e. '&lt;body&gt; &lt;?php phpinfo() ?&gt;
275          * &lt;/body&gt;'
276          */
277         public void parse(String s, HashMap variables) {
278                 fMethodVariables = variables;
279                 fStackUnassigned = new ArrayList();
280                 init(s);
281                 parse();
282         }
283
284         /**
285          * Parses a string with php tags i.e. '&lt;body&gt; &lt;?php phpinfo() ?&gt;
286          * &lt;/body&gt;'
287          */
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);
294                         }
295                 }
296                 getNextToken();
297                 do {
298                         try {
299                                 if (token != TokenNameEOF && token != TokenNameERROR) {
300                                         statementList();
301                                 }
302                                 if (token != TokenNameEOF) {
303                                         if (token == TokenNameERROR) {
304                                                 throwSyntaxError("Scanner error (Found unknown token: " + scanner.toStringAction(token) + ")");
305                                         }
306                                         if (token == TokenNameRPAREN) {
307                                                 throwSyntaxError("Too many closing ')'; end-of-file not reached.");
308                                         }
309                                         if (token == TokenNameRBRACE) {
310                                                 throwSyntaxError("Too many closing '}'; end-of-file not reached.");
311                                         }
312                                         if (token == TokenNameRBRACKET) {
313                                                 throwSyntaxError("Too many closing ']'; end-of-file not reached.");
314                                         }
315                                         if (token == TokenNameLPAREN) {
316                                                 throwSyntaxError("Read character '('; end-of-file not reached.");
317                                         }
318                                         if (token == TokenNameLBRACE) {
319                                                 throwSyntaxError("Read character '{';  end-of-file not reached.");
320                                         }
321                                         if (token == TokenNameLBRACKET) {
322                                                 throwSyntaxError("Read character '[';  end-of-file not reached.");
323                                         }
324                                         throwSyntaxError("End-of-file not reached.");
325                                 }
326                                 break;
327                         } catch (SyntaxError syntaxError) {
328                                 // syntaxError.printStackTrace();
329                                 break;
330                         }
331                 } while (true);
332
333                 endParse(0);
334         }
335
336         /**
337          * Parses a string with php tags i.e. '&lt;body&gt; &lt;?php phpinfo() ?&gt;
338          * &lt;/body&gt;'
339          */
340         public void parseFunction(String s, HashMap variables) {
341                 init(s);
342                 scanner.phpMode = true;
343                 parseFunction(variables);
344         }
345
346         /**
347          * Parses a string with php tags i.e. '&lt;body&gt; &lt;?php phpinfo() ?&gt;
348          * &lt;/body&gt;'
349          */
350         protected void parseFunction(HashMap variables) {
351                 getNextToken();
352                 boolean hasModifiers = member_modifiers();
353                 if (token == TokenNamefunction) {
354                         if (!hasModifiers) {
355                                 checkAndSetModifiers(AccPublic);
356                         }
357                         this.fMethodVariables = variables;
358
359                         MethodDeclaration methodDecl = new MethodDeclaration(null);
360                         methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
361                         methodDecl.modifiers = this.modifiers;
362                         methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
363                         try {
364                                 getNextToken();
365                                 functionDefinition(methodDecl);
366                         } catch (SyntaxError sytaxErr1) {
367                                 return;
368                         } finally {
369                                 int sourceEnd = methodDecl.sourceEnd;
370                                 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
371                                         sourceEnd = methodDecl.declarationSourceStart + 1;
372                                 }
373                                 methodDecl.sourceEnd = sourceEnd;
374                                 methodDecl.declarationSourceEnd = sourceEnd;
375                         }
376                 }
377         }
378
379         protected CompilationUnitDeclaration endParse(int act) {
380
381                 this.lastAct = act;
382
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$
390                 // }
391                 // } else {
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$
397                 }
398                 // }
399                 if (scanner.recordLineSeparator) {
400                         compilationUnit.compilationResult.lineSeparatorPositions = scanner.getLineEnds();
401                 }
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]);
407                         }
408                 }
409                 compilationUnit.imports = new ImportReference[includesList.size()];
410                 for (int i = 0; i < includesList.size(); i++) {
411                         compilationUnit.imports[i] = (ImportReference) includesList.get(i);
412                 }
413                 return compilationUnit;
414         }
415
416         private Block statementList() {
417                 boolean branchStatement = false;
418                 Statement statement;
419                 int blockStart = scanner.getCurrentTokenStartPosition();
420                 ArrayList blockStatements = new ArrayList();
421                 do {
422                         try {
423                                 statement = statement();
424                                 blockStatements.add(statement);
425                                 if (token == TokenNameEOF) {
426                                         return null;
427                                 }
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);
433                                 }
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);
439                                 }
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;
446                                 if (!tokenize) {
447                                         scanner.tokenizeStrings = true;
448                                 }
449                                 try {
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);
456                                                 }
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) {
463                                                         break;
464                                                 }
465                                                 // System.out.println(scanner.toStringAction(token));
466                                                 getNextToken();
467                                                 // System.out.println(scanner.toStringAction(token));
468                                         }
469                                         if (token == TokenNameEOF) {
470                                                 throw sytaxErr1;
471                                         }
472                                 } finally {
473                                         scanner.tokenizeStrings = tokenize;
474                                 }
475                         }
476                 } while (true);
477         }
478
479         /**
480          * @param statement
481          * @return
482          */
483         private boolean checkUnreachableStatements(Statement statement) {
484                 if (statement instanceof ReturnStatement || statement instanceof ContinueStatement || statement instanceof BreakStatement) {
485                         return true;
486                 } else if (statement instanceof IfStatement && ((IfStatement) statement).checkUnreachable) {
487                         return true;
488                 }
489                 return false;
490         }
491
492         /**
493          * @param blockStart
494          * @param blockStatements
495          * @return
496          */
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);
502                 return b;
503         }
504
505         private void functionBody(MethodDeclaration methodDecl) {
506                 // '{' [statement-list] '}'
507                 if (token == TokenNameLBRACE) {
508                         getNextToken();
509                 } else {
510                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
511                         throwSyntaxError("'{' expected in compound-statement.");
512                 }
513                 if (token != TokenNameRBRACE) {
514                         statementList();
515                 }
516                 if (token == TokenNameRBRACE) {
517                         methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
518                         getNextToken();
519                 } else {
520                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
521                         throwSyntaxError("'}' expected in compound-statement.");
522                 }
523         }
524
525         private Statement statement() {
526                 Statement statement = null;
527                 Expression expression;
528                 int sourceStart = scanner.getCurrentTokenStartPosition();
529                 int sourceEnd;
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 ';'
534                         getNextToken();
535                         if (token == TokenNameLPAREN) {
536                                 getNextToken();
537                         } else {
538                                 throwSyntaxError("'(' expected after 'if' keyword.");
539                         }
540                         expression = expr();
541                         if (token == TokenNameRPAREN) {
542                                 getNextToken();
543                         } else {
544                                 throwSyntaxError("')' expected after 'if' condition.");
545                         }
546                         // create basic IfStatement
547                         IfStatement ifStatement = new IfStatement(expression, null, null, sourceStart, -1);
548                         if (token == TokenNameCOLON) {
549                                 getNextToken();
550                                 ifStatementColon(ifStatement);
551                         } else {
552                                 ifStatement(ifStatement);
553                         }
554                         return ifStatement;
555                 } else if (token == TokenNameswitch) {
556                         getNextToken();
557                         if (token == TokenNameLPAREN) {
558                                 getNextToken();
559                         } else {
560                                 throwSyntaxError("'(' expected after 'switch' keyword.");
561                         }
562                         expr();
563                         if (token == TokenNameRPAREN) {
564                                 getNextToken();
565                         } else {
566                                 throwSyntaxError("')' expected after 'switch' condition.");
567                         }
568                         switchStatement();
569                         return statement;
570                 } else if (token == TokenNamefor) {
571                         getNextToken();
572                         if (token == TokenNameLPAREN) {
573                                 getNextToken();
574                         } else {
575                                 throwSyntaxError("'(' expected after 'for' keyword.");
576                         }
577                         if (token == TokenNameSEMICOLON) {
578                                 getNextToken();
579                         } else {
580                                 expressionList();
581                                 if (token == TokenNameSEMICOLON) {
582                                         getNextToken();
583                                 } else {
584                                         throwSyntaxError("';' expected after 'for'.");
585                                 }
586                         }
587                         if (token == TokenNameSEMICOLON) {
588                                 getNextToken();
589                         } else {
590                                 expressionList();
591                                 if (token == TokenNameSEMICOLON) {
592                                         getNextToken();
593                                 } else {
594                                         throwSyntaxError("';' expected after 'for'.");
595                                 }
596                         }
597                         if (token == TokenNameRPAREN) {
598                                 getNextToken();
599                         } else {
600                                 expressionList();
601                                 if (token == TokenNameRPAREN) {
602                                         getNextToken();
603                                 } else {
604                                         throwSyntaxError("')' expected after 'for'.");
605                                 }
606                         }
607                         forStatement();
608                         return statement;
609                 } else if (token == TokenNamewhile) {
610                         getNextToken();
611                         if (token == TokenNameLPAREN) {
612                                 getNextToken();
613                         } else {
614                                 throwSyntaxError("'(' expected after 'while' keyword.");
615                         }
616                         expr();
617                         if (token == TokenNameRPAREN) {
618                                 getNextToken();
619                         } else {
620                                 throwSyntaxError("')' expected after 'while' condition.");
621                         }
622                         whileStatement();
623                         return statement;
624                 } else if (token == TokenNamedo) {
625                         getNextToken();
626                         if (token == TokenNameLBRACE) {
627                                 getNextToken();
628                                 if (token != TokenNameRBRACE) {
629                                         statementList();
630                                 }
631                                 if (token == TokenNameRBRACE) {
632                                         getNextToken();
633                                 } else {
634                                         throwSyntaxError("'}' expected after 'do' keyword.");
635                                 }
636                         } else {
637                                 statement();
638                         }
639                         if (token == TokenNamewhile) {
640                                 getNextToken();
641                                 if (token == TokenNameLPAREN) {
642                                         getNextToken();
643                                 } else {
644                                         throwSyntaxError("'(' expected after 'while' keyword.");
645                                 }
646                                 expr();
647                                 if (token == TokenNameRPAREN) {
648                                         getNextToken();
649                                 } else {
650                                         throwSyntaxError("')' expected after 'while' condition.");
651                                 }
652                         } else {
653                                 throwSyntaxError("'while' expected after 'do' keyword.");
654                         }
655                         if (token == TokenNameSEMICOLON) {
656                                 getNextToken();
657                         } else {
658                                 if (token != TokenNameINLINE_HTML) {
659                                         throwSyntaxError("';' expected after do-while statement.");
660                                 }
661                                 getNextToken();
662                         }
663                         return statement;
664                 } else if (token == TokenNameforeach) {
665                         getNextToken();
666                         if (token == TokenNameLPAREN) {
667                                 getNextToken();
668                         } else {
669                                 throwSyntaxError("'(' expected after 'foreach' keyword.");
670                         }
671                         expr();
672                         if (token == TokenNameas) {
673                                 getNextToken();
674                         } else {
675                                 throwSyntaxError("'as' expected after 'foreach' exxpression.");
676                         }
677                         // variable();
678                         foreach_variable();
679                         foreach_optional_arg();
680                         if (token == TokenNameEQUAL_GREATER) {
681                                 getNextToken();
682                                 variable(false, false);
683                         }
684                         if (token == TokenNameRPAREN) {
685                                 getNextToken();
686                         } else {
687                                 throwSyntaxError("')' expected after 'foreach' expression.");
688                         }
689                         foreachStatement();
690                         return statement;
691                 } else if (token == TokenNamebreak) {
692                         expression = null;
693                         getNextToken();
694                         if (token != TokenNameSEMICOLON) {
695                                 expression = expr();
696                         }
697                         if (token == TokenNameSEMICOLON) {
698                                 sourceEnd = scanner.getCurrentTokenEndPosition();
699                                 getNextToken();
700                         } else {
701                                 if (token != TokenNameINLINE_HTML) {
702                                         throwSyntaxError("';' expected after 'break'.");
703                                 }
704                                 sourceEnd = scanner.getCurrentTokenEndPosition();
705                                 getNextToken();
706                         }
707                         return new BreakStatement(null, sourceStart, sourceEnd);
708                 } else if (token == TokenNamecontinue) {
709                         expression = null;
710                         getNextToken();
711                         if (token != TokenNameSEMICOLON) {
712                                 expression = expr();
713                         }
714                         if (token == TokenNameSEMICOLON) {
715                                 sourceEnd = scanner.getCurrentTokenEndPosition();
716                                 getNextToken();
717                         } else {
718                                 if (token != TokenNameINLINE_HTML) {
719                                         throwSyntaxError("';' expected after 'continue'.");
720                                 }
721                                 sourceEnd = scanner.getCurrentTokenEndPosition();
722                                 getNextToken();
723                         }
724                         return new ContinueStatement(null, sourceStart, sourceEnd);
725                 } else if (token == TokenNamereturn) {
726                         expression = null;
727                         getNextToken();
728                         if (token != TokenNameSEMICOLON) {
729                                 expression = expr();
730                         }
731                         if (token == TokenNameSEMICOLON) {
732                                 sourceEnd = scanner.getCurrentTokenEndPosition();
733                                 getNextToken();
734                         } else {
735                                 if (token != TokenNameINLINE_HTML) {
736                                         throwSyntaxError("';' expected after 'return'.");
737                                 }
738                                 sourceEnd = scanner.getCurrentTokenEndPosition();
739                                 getNextToken();
740                         }
741                         return new ReturnStatement(expression, sourceStart, sourceEnd);
742                 } else if (token == TokenNameecho) {
743                         getNextToken();
744                         expressionList();
745                         if (token == TokenNameSEMICOLON) {
746                                 getNextToken();
747                         } else {
748                                 if (token != TokenNameINLINE_HTML) {
749                                         throwSyntaxError("';' expected after 'echo' statement.");
750                                 }
751                                 getNextToken();
752                         }
753                         return statement;
754                 } else if (token == TokenNameINLINE_HTML) {
755                         getNextToken();
756                         return statement;
757                 } else if (token == TokenNameglobal) {
758                         getNextToken();
759                         global_var_list();
760                         if (token == TokenNameSEMICOLON) {
761                                 getNextToken();
762                         } else {
763                                 if (token != TokenNameINLINE_HTML) {
764                                         throwSyntaxError("';' expected after 'global' statement.");
765                                 }
766                                 getNextToken();
767                         }
768                         return statement;
769                 } else if (token == TokenNamestatic) {
770                         getNextToken();
771                         static_var_list();
772                         if (token == TokenNameSEMICOLON) {
773                                 getNextToken();
774                         } else {
775                                 if (token != TokenNameINLINE_HTML) {
776                                         throwSyntaxError("';' expected after 'static' statement.");
777                                 }
778                                 getNextToken();
779                         }
780                         return statement;
781                 } else if (token == TokenNameunset) {
782                         getNextToken();
783                         if (token == TokenNameLPAREN) {
784                                 getNextToken();
785                         } else {
786                                 throwSyntaxError("'(' expected after 'unset' statement.");
787                         }
788                         unset_variables();
789                         if (token == TokenNameRPAREN) {
790                                 getNextToken();
791                         } else {
792                                 throwSyntaxError("')' expected after 'unset' statement.");
793                         }
794                         if (token == TokenNameSEMICOLON) {
795                                 getNextToken();
796                         } else {
797                                 if (token != TokenNameINLINE_HTML) {
798                                         throwSyntaxError("';' expected after 'unset' statement.");
799                                 }
800                                 getNextToken();
801                         }
802                         return 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;
808                         try {
809                                 getNextToken();
810                                 functionDefinition(methodDecl);
811                         } finally {
812                                 sourceEnd = methodDecl.sourceEnd;
813                                 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
814                                         sourceEnd = methodDecl.declarationSourceStart + 1;
815                                 }
816                                 methodDecl.declarationSourceEnd = sourceEnd;
817                                 methodDecl.sourceEnd = sourceEnd;
818                         }
819                         return statement;
820                 } else if (token == TokenNamedeclare) {
821                         // T_DECLARE '(' declare_list ')' declare_statement
822                         getNextToken();
823                         if (token != TokenNameLPAREN) {
824                                 throwSyntaxError("'(' expected in 'declare' statement.");
825                         }
826                         getNextToken();
827                         declare_list();
828                         if (token != TokenNameRPAREN) {
829                                 throwSyntaxError("')' expected in 'declare' statement.");
830                         }
831                         getNextToken();
832                         declare_statement();
833                         return statement;
834                 } else if (token == TokenNametry) {
835                         getNextToken();
836                         if (token != TokenNameLBRACE) {
837                                 throwSyntaxError("'{' expected in 'try' statement.");
838                         }
839                         getNextToken();
840                         statementList();
841                         if (token != TokenNameRBRACE) {
842                                 throwSyntaxError("'}' expected in 'try' statement.");
843                         }
844                         getNextToken();
845                         return statement;
846                 } else if (token == TokenNamecatch) {
847                         getNextToken();
848                         if (token != TokenNameLPAREN) {
849                                 throwSyntaxError("'(' expected in 'catch' statement.");
850                         }
851                         getNextToken();
852                         fully_qualified_class_name();
853                         if (token != TokenNameVariable) {
854                                 throwSyntaxError("Variable expected in 'catch' statement.");
855                         }
856                         addVariableSet();
857                         getNextToken();
858                         if (token != TokenNameRPAREN) {
859                                 throwSyntaxError("')' expected in 'catch' statement.");
860                         }
861                         getNextToken();
862                         if (token != TokenNameLBRACE) {
863                                 throwSyntaxError("'{' expected in 'catch' statement.");
864                         }
865                         getNextToken();
866                         if (token != TokenNameRBRACE) {
867                                 statementList();
868                                 if (token != TokenNameRBRACE) {
869                                         throwSyntaxError("'}' expected in 'catch' statement.");
870                                 }
871                         }
872                         getNextToken();
873                         additional_catches();
874                         return statement;
875                 } else if (token == TokenNamethrow) {
876                         getNextToken();
877                         expr();
878                         if (token == TokenNameSEMICOLON) {
879                                 getNextToken();
880                         } else {
881                                 throwSyntaxError("';' expected after 'throw' exxpression.");
882                         }
883                         return statement;
884                 } else if (token == TokenNamefinal || token == TokenNameabstract || token == TokenNameclass || token == TokenNameinterface) {
885                         try {
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);
895                         } finally {
896                                 // reduce stack:
897                                 astPtr--;
898                                 astLengthPtr--;
899                         }
900                         return statement;
901                         // } else {
902                         // throwSyntaxError("Unexpected keyword '" + keyword + "'");
903                 } else if (token == TokenNameLBRACE) {
904                         getNextToken();
905                         if (token != TokenNameRBRACE) {
906                                 statement = statementList();
907                         }
908                         if (token == TokenNameRBRACE) {
909                                 getNextToken();
910                                 return statement;
911                         } else {
912                                 throwSyntaxError("'}' expected.");
913                         }
914                 } else {
915                         if (token != TokenNameSEMICOLON) {
916                                 expr();
917                         }
918                         if (token == TokenNameSEMICOLON) {
919                                 getNextToken();
920                                 return statement;
921                         } else {
922                                 if (token == TokenNameRBRACE) {
923                                         reportSyntaxError("';' expected after expression (Found token: " + scanner.toStringAction(token) + ")");
924                                 } else {
925                                         if (token != TokenNameINLINE_HTML && token != TokenNameEOF) {
926                                                 throwSyntaxError("';' expected after expression (Found token: " + scanner.toStringAction(token) + ")");
927                                         }
928                                         getNextToken();
929                                 }
930                         }
931                 }
932                 // may be null
933                 return statement;
934         }
935
936         private void declare_statement() {
937                 // statement
938                 // | ':' inner_statement_list T_ENDDECLARE ';'
939                 // ;
940                 if (token == TokenNameCOLON) {
941                         getNextToken();
942                         // TODO: implement inner_statement_list();
943                         statementList();
944                         if (token != TokenNameenddeclare) {
945                                 throwSyntaxError("'enddeclare' expected in 'declare' statement.");
946                         }
947                         getNextToken();
948                         if (token != TokenNameSEMICOLON) {
949                                 throwSyntaxError("';' expected after 'enddeclare' keyword.");
950                         }
951                         getNextToken();
952                 } else {
953                         statement();
954                 }
955         }
956
957         private void declare_list() {
958                 // T_STRING '=' static_scalar
959                 // | declare_list ',' T_STRING '=' static_scalar
960                 while (true) {
961                         if (token != TokenNameIdentifier) {
962                                 throwSyntaxError("Identifier expected in 'declare' list.");
963                         }
964                         getNextToken();
965                         if (token != TokenNameEQUAL) {
966                                 throwSyntaxError("'=' expected in 'declare' list.");
967                         }
968                         getNextToken();
969                         static_scalar();
970                         if (token != TokenNameCOMMA) {
971                                 break;
972                         }
973                         getNextToken();
974                 }
975         }
976
977         private void additional_catches() {
978                 while (token == TokenNamecatch) {
979                         getNextToken();
980                         if (token != TokenNameLPAREN) {
981                                 throwSyntaxError("'(' expected in 'catch' statement.");
982                         }
983                         getNextToken();
984                         fully_qualified_class_name();
985                         if (token != TokenNameVariable) {
986                                 throwSyntaxError("Variable expected in 'catch' statement.");
987                         }
988                         addVariableSet();
989                         getNextToken();
990                         if (token != TokenNameRPAREN) {
991                                 throwSyntaxError("')' expected in 'catch' statement.");
992                         }
993                         getNextToken();
994                         if (token != TokenNameLBRACE) {
995                                 throwSyntaxError("'{' expected in 'catch' statement.");
996                         }
997                         getNextToken();
998                         if (token != TokenNameRBRACE) {
999                                 statementList();
1000                         }
1001                         if (token != TokenNameRBRACE) {
1002                                 throwSyntaxError("'}' expected in 'catch' statement.");
1003                         }
1004                         getNextToken();
1005                 }
1006         }
1007
1008         private void foreach_variable() {
1009                 // w_variable
1010                 // | '&' w_variable
1011                 if (token == TokenNameAND) {
1012                         getNextToken();
1013                 }
1014                 w_variable(true);
1015         }
1016
1017         private void foreach_optional_arg() {
1018                 // /* empty */
1019                 // | T_DOUBLE_ARROW foreach_variable
1020                 if (token == TokenNameEQUAL_GREATER) {
1021                         getNextToken();
1022                         foreach_variable();
1023                 }
1024         }
1025
1026         private void global_var_list() {
1027                 // global_var_list:
1028                 // global_var_list ',' global_var
1029                 // | global_var
1030                 HashSet set = peekVariableSet();
1031                 while (true) {
1032                         global_var(set);
1033                         if (token != TokenNameCOMMA) {
1034                                 break;
1035                         }
1036                         getNextToken();
1037                 }
1038         }
1039
1040         private void global_var(HashSet set) {
1041                 // global_var:
1042                 // T_VARIABLE
1043                 // | '$' r_variable
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);
1049                         }
1050                         addVariableSet(set);
1051                         getNextToken();
1052                 } else if (token == TokenNameDOLLAR) {
1053                         getNextToken();
1054                         if (token == TokenNameLBRACE) {
1055                                 getNextToken();
1056                                 expr();
1057                                 if (token != TokenNameRBRACE) {
1058                                         throwSyntaxError("'}' expected in global variable.");
1059                                 }
1060                                 getNextToken();
1061                         } else {
1062                                 r_variable();
1063                         }
1064                 }
1065         }
1066
1067         private void static_var_list() {
1068                 // static_var_list:
1069                 // static_var_list ',' T_VARIABLE
1070                 // | static_var_list ',' T_VARIABLE '=' static_scalar
1071                 // | T_VARIABLE
1072                 // | T_VARIABLE '=' static_scalar,
1073                 HashSet set = peekVariableSet();
1074                 while (true) {
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);
1079                                 }
1080                                 addVariableSet(set);
1081                                 getNextToken();
1082                                 if (token == TokenNameEQUAL) {
1083                                         getNextToken();
1084                                         static_scalar();
1085                                 }
1086                                 if (token != TokenNameCOMMA) {
1087                                         break;
1088                                 }
1089                                 getNextToken();
1090                         } else {
1091                                 break;
1092                         }
1093                 }
1094         }
1095
1096         private void unset_variables() {
1097                 // unset_variables:
1098                 // unset_variable
1099                 // | unset_variables ',' unset_variable
1100                 // unset_variable:
1101                 // variable
1102                 while (true) {
1103                         variable(false, false);
1104                         if (token != TokenNameCOMMA) {
1105                                 break;
1106                         }
1107                         getNextToken();
1108                 }
1109         }
1110
1111         private final void initializeModifiers() {
1112                 this.modifiers = 0;
1113                 this.modifiersSourceStart = -1;
1114         }
1115
1116         private final void checkAndSetModifiers(int flag) {
1117                 this.modifiers |= flag;
1118                 if (this.modifiersSourceStart < 0)
1119                         this.modifiersSourceStart = this.scanner.startPosition;
1120         }
1121
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);
1129                         getNextToken();
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);
1141                                 }
1142                                 getNextToken();
1143                                 interface_extends_list(typeDecl);
1144                         } else {
1145                                 typeDecl.name = new char[] { ' ' };
1146                                 throwSyntaxError("Interface name expected after keyword 'interface'.", typeDecl.sourceStart, typeDecl.sourceEnd);
1147                                 return;
1148                         }
1149                 } else {
1150                         // class_entry_type T_STRING extends_from
1151                         // implements_list
1152                         // '{' class_statement_list'}'
1153                         class_entry_type();
1154                         typeDecl.modifiers = this.modifiers;
1155                         typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1156                         typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1157                         // identifier
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);
1167                                 }
1168                                 getNextToken();
1169                                 // extends_from:
1170                                 // /* empty */
1171                                 // | T_EXTENDS fully_qualified_class_name
1172                                 if (token == TokenNameextends) {
1173                                         interface_extends_list(typeDecl);
1174                                         // getNextToken();
1175                                         // if (token != TokenNameIdentifier) {
1176                                         // throwSyntaxError("Class name expected after keyword
1177                                         // 'extends'.",
1178                                         // scanner.getCurrentTokenStartPosition(), scanner
1179                                         // .getCurrentTokenEndPosition());
1180                                         // }
1181                                 }
1182                                 implements_list(typeDecl);
1183                         } else {
1184                                 typeDecl.name = new char[] { ' ' };
1185                                 throwSyntaxError("Class name expected after keyword 'class'.", typeDecl.sourceStart, typeDecl.sourceEnd);
1186                                 return;
1187                         }
1188                 }
1189                 // '{' class_statement_list '}'
1190                 if (token == TokenNameLBRACE) {
1191                         getNextToken();
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);
1198                                 }
1199                         }
1200                         if (token == TokenNameRBRACE) {
1201                                 typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
1202                                 getNextToken();
1203                         } else {
1204                                 throwSyntaxError("'}' expected at end of class body.");
1205                         }
1206                 } else {
1207                         throwSyntaxError("'{' expected at start of class body.");
1208                 }
1209         }
1210
1211         private void class_entry_type() {
1212                 // T_CLASS
1213                 // | T_ABSTRACT T_CLASS
1214                 // | T_FINAL T_CLASS
1215                 if (token == TokenNameclass) {
1216                         getNextToken();
1217                 } else if (token == TokenNameabstract) {
1218                         checkAndSetModifiers(AccAbstract);
1219                         getNextToken();
1220                         if (token != TokenNameclass) {
1221                                 throwSyntaxError("Keyword 'class' expected after keyword 'abstract'.");
1222                         }
1223                         getNextToken();
1224                 } else if (token == TokenNamefinal) {
1225                         checkAndSetModifiers(AccFinal);
1226                         getNextToken();
1227                         if (token != TokenNameclass) {
1228                                 throwSyntaxError("Keyword 'class' expected after keyword 'final'.");
1229                         }
1230                         getNextToken();
1231                 } else {
1232                         throwSyntaxError("Keyword 'class' 'final' or 'abstract' expected");
1233                 }
1234         }
1235
1236         // private void class_extends(TypeDeclaration typeDecl) {
1237         // // /* empty */
1238         // // | T_EXTENDS interface_list
1239         // if (token == TokenNameextends) {
1240         // getNextToken();
1241         //
1242         // if (token == TokenNameIdentifier) {
1243         // getNextToken();
1244         // } else {
1245         // throwSyntaxError("Class name expected after keyword 'extends'.");
1246         // }
1247         // }
1248         // }
1249
1250         private void interface_extends_list(TypeDeclaration typeDecl) {
1251                 // /* empty */
1252                 // | T_EXTENDS interface_list
1253                 if (token == TokenNameextends) {
1254                         getNextToken();
1255                         interface_list();
1256                 }
1257         }
1258
1259         private void implements_list(TypeDeclaration typeDecl) {
1260                 // /* empty */
1261                 // | T_IMPLEMENTS interface_list
1262                 if (token == TokenNameimplements) {
1263                         getNextToken();
1264                         interface_list();
1265                 }
1266         }
1267
1268         private void interface_list() {
1269                 // interface_list:
1270                 // fully_qualified_class_name
1271                 // | interface_list ',' fully_qualified_class_name
1272                 do {
1273                         if (token == TokenNameIdentifier) {
1274                                 getNextToken();
1275                         } else {
1276                                 throwSyntaxError("Interface name expected after keyword 'implements'.");
1277                         }
1278                         if (token != TokenNameCOMMA) {
1279                                 return;
1280                         }
1281                         getNextToken();
1282                 } while (true);
1283         }
1284
1285         // private void classBody(TypeDeclaration typeDecl) {
1286         // //'{' [class-element-list] '}'
1287         // if (token == TokenNameLBRACE) {
1288         // getNextToken();
1289         // if (token != TokenNameRBRACE) {
1290         // class_statement_list();
1291         // }
1292         // if (token == TokenNameRBRACE) {
1293         // typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
1294         // getNextToken();
1295         // } else {
1296         // throwSyntaxError("'}' expected at end of class body.");
1297         // }
1298         // } else {
1299         // throwSyntaxError("'{' expected at start of class body.");
1300         // }
1301         // }
1302         private void class_statement_list(ArrayList list) {
1303                 do {
1304                         try {
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) {
1309                                         continue;
1310                                 }
1311                                 if (token == TokenNameRBRACE) {
1312                                         break;
1313                                 }
1314                                 throwSyntaxError("'}' at end of class statement.");
1315                         } catch (SyntaxError sytaxErr1) {
1316                                 boolean tokenize = scanner.tokenizeStrings;
1317                                 if (!tokenize) {
1318                                         scanner.tokenizeStrings = true;
1319                                 }
1320                                 try {
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) {
1328                                                         break;
1329                                                 }
1330                                                 // System.out.println(scanner.toStringAction(token));
1331                                                 getNextToken();
1332                                         }
1333                                         if (token == TokenNameEOF) {
1334                                                 throw sytaxErr1;
1335                                         }
1336                                 } finally {
1337                                         scanner.tokenizeStrings = tokenize;
1338                                 }
1339                         }
1340                 } while (true);
1341         }
1342
1343         private void class_statement(ArrayList list) {
1344                 // class_statement:
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();
1351
1352                 if (token == TokenNamevar) {
1353                         checkAndSetModifiers(AccPublic);
1354                         problemReporter.phpVarDeprecatedWarning(scanner.getCurrentTokenStartPosition(), scanner.getCurrentTokenEndPosition(),
1355                                         referenceContext, compilationUnit.compilationResult);
1356                         getNextToken();
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.");
1363                         }
1364                         getNextToken();
1365                 } else {
1366                         boolean hasModifiers = member_modifiers();
1367                         if (token == TokenNamefunction) {
1368                                 if (!hasModifiers) {
1369                                         checkAndSetModifiers(AccPublic);
1370                                 }
1371                                 MethodDeclaration methodDecl = new MethodDeclaration(this.compilationUnit.compilationResult);
1372                                 methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
1373                                 methodDecl.modifiers = this.modifiers;
1374                                 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
1375                                 try {
1376                                         getNextToken();
1377                                         functionDefinition(methodDecl);
1378                                 } finally {
1379                                         int sourceEnd = methodDecl.sourceEnd;
1380                                         if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
1381                                                 sourceEnd = methodDecl.declarationSourceStart + 1;
1382                                         }
1383                                         methodDecl.declarationSourceEnd = sourceEnd;
1384                                         methodDecl.sourceEnd = sourceEnd;
1385                                 }
1386                         } else {
1387                                 if (!hasModifiers) {
1388                                         throwSyntaxError("'public' 'private' or 'protected' modifier expected for field declarations.");
1389                                 }
1390                                 class_variable_declaration(declarationSourceStart, list);
1391                         }
1392                 }
1393         }
1394
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.");
1400                 } else {
1401                         getNextToken();
1402                 }
1403                 while (true) {
1404                         if (token != TokenNameIdentifier) {
1405                                 throwSyntaxError("Identifier expected in class const declaration.");
1406                         }
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);
1415                         getNextToken();
1416                         if (token != TokenNameEQUAL) {
1417                                 throwSyntaxError("'=' expected in class const declaration.");
1418                         }
1419                         getNextToken();
1420                         static_scalar();
1421                         if (token != TokenNameCOMMA) {
1422                                 break; // while(true)-loop
1423                         }
1424                         getNextToken();
1425                 }
1426         }
1427
1428         // private void variable_modifiers() {
1429         // // variable_modifiers:
1430         // // non_empty_member_modifiers
1431         // //| T_VAR
1432         // initializeModifiers();
1433         // if (token == TokenNamevar) {
1434         // checkAndSetModifiers(AccPublic);
1435         // reportSyntaxError(
1436         // "Keyword 'var' is deprecated. Please use 'public' 'private' or
1437         // 'protected'
1438         // modifier for field declarations.",
1439         // scanner.getCurrentTokenStartPosition(), scanner
1440         // .getCurrentTokenEndPosition());
1441         // getNextToken();
1442         // } else {
1443         // if (!member_modifiers()) {
1444         // throwSyntaxError("'public' 'private' or 'protected' modifier expected for
1445         // field declarations.");
1446         // }
1447         // }
1448         // }
1449         // private void method_modifiers() {
1450         // //method_modifiers:
1451         // // /* empty */
1452         // //| non_empty_member_modifiers
1453         // initializeModifiers();
1454         // if (!member_modifiers()) {
1455         // checkAndSetModifiers(AccPublic);
1456         // }
1457         // }
1458         private boolean member_modifiers() {
1459                 // T_PUBLIC
1460                 // | T_PROTECTED
1461                 // | T_PRIVATE
1462                 // | T_STATIC
1463                 // | T_ABSTRACT
1464                 // | T_FINAL
1465                 boolean foundToken = false;
1466                 while (true) {
1467                         if (token == TokenNamepublic) {
1468                                 checkAndSetModifiers(AccPublic);
1469                                 getNextToken();
1470                                 foundToken = true;
1471                         } else if (token == TokenNameprotected) {
1472                                 checkAndSetModifiers(AccProtected);
1473                                 getNextToken();
1474                                 foundToken = true;
1475                         } else if (token == TokenNameprivate) {
1476                                 checkAndSetModifiers(AccPrivate);
1477                                 getNextToken();
1478                                 foundToken = true;
1479                         } else if (token == TokenNamestatic) {
1480                                 checkAndSetModifiers(AccStatic);
1481                                 getNextToken();
1482                                 foundToken = true;
1483                         } else if (token == TokenNameabstract) {
1484                                 checkAndSetModifiers(AccAbstract);
1485                                 getNextToken();
1486                                 foundToken = true;
1487                         } else if (token == TokenNamefinal) {
1488                                 checkAndSetModifiers(AccFinal);
1489                                 getNextToken();
1490                                 foundToken = true;
1491                         } else {
1492                                 break;
1493                         }
1494                 }
1495                 return foundToken;
1496         }
1497
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
1502                 // | T_VARIABLE
1503                 // | T_VARIABLE '=' static_scalar
1504                 char[] classVariable;
1505                 do {
1506                         if (token == TokenNameVariable) {
1507                                 classVariable = scanner.getCurrentIdentifierSource();
1508                                 // indexManager.addIdentifierInformation('v', classVariable, buf, -1,
1509                                 // -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);
1520                                 }
1521                                 getNextToken();
1522                                 if (token == TokenNameEQUAL) {
1523                                         getNextToken();
1524                                         static_scalar();
1525                                 }
1526                         } else {
1527                                 // if (token == TokenNamethis) {
1528                                 // throwSyntaxError("'$this' not allowed after keyword 'public'
1529                                 // 'protected' 'private' 'var'.");
1530                                 // }
1531                                 throwSyntaxError("Variable expected after keyword 'public' 'protected' 'private' 'var'.");
1532                         }
1533                         if (token != TokenNameCOMMA) {
1534                                 break;
1535                         }
1536                         getNextToken();
1537                 } while (true);
1538                 if (token != TokenNameSEMICOLON) {
1539                         throwSyntaxError("';' expected after field declaration.");
1540                 }
1541                 getNextToken();
1542         }
1543
1544         private void functionDefinition(MethodDeclaration methodDecl) {
1545                 boolean isAbstract = false;
1546                 if (astPtr == 0) {
1547                         if (compilationUnit != null) {
1548                                 compilationUnit.types.add(methodDecl);
1549                         }
1550                 } else {
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 };
1556                                 } else {
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;
1562                                 }
1563                                 if ((typeDecl.modifiers & AccAbstract) == AccAbstract) {
1564                                         isAbstract = true;
1565                                 } else if ((typeDecl.modifiers & AccInterface) == AccInterface) {
1566                                         isAbstract = true;
1567                                 }
1568                         }
1569                 }
1570                 try {
1571                         pushFunctionVariableSet();
1572                         functionDeclarator(methodDecl);
1573                         if (token == TokenNameSEMICOLON) {
1574                                 if (!isAbstract) {
1575                                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1576                                         throwSyntaxError("Body declaration expected for method: " + new String(methodDecl.selector));
1577                                 }
1578                                 getNextToken();
1579                                 return;
1580                         }
1581                         functionBody(methodDecl);
1582                 } finally {
1583                         if (!fStackUnassigned.isEmpty()) {
1584                                 fStackUnassigned.remove(fStackUnassigned.size() - 1);
1585                         }
1586                 }
1587         }
1588
1589         private void functionDeclarator(MethodDeclaration methodDecl) {
1590                 // identifier '(' [parameter-list] ')'
1591                 if (token == TokenNameAND) {
1592                         getNextToken();
1593                 }
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);
1601                         }
1602                         getNextToken();
1603                         if (token == TokenNameLPAREN) {
1604                                 getNextToken();
1605                         } else {
1606                                 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1607                                 throwSyntaxError("'(' expected in function declaration.");
1608                         }
1609                         if (token != TokenNameRPAREN) {
1610                                 parameter_list(methodDecl);
1611                         }
1612                         if (token != TokenNameRPAREN) {
1613                                 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1614                                 throwSyntaxError("')' expected in function declaration.");
1615                         } else {
1616                                 methodDecl.bodyStart = scanner.getCurrentTokenEndPosition() + 1;
1617                                 getNextToken();
1618                         }
1619                 } else {
1620                         methodDecl.selector = "<undefined>".toCharArray();
1621                         methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1622                         throwSyntaxError("Function name expected after keyword 'function'.");
1623                 }
1624         }
1625
1626         //
1627         private void parameter_list(MethodDeclaration methodDecl) {
1628                 // non_empty_parameter_list
1629                 // | /* empty */
1630                 non_empty_parameter_list(methodDecl, true);
1631         }
1632
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 '='
1641                 // static_scalar
1642                 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE '='
1643                 // static_scalar
1644                 char[] typeIdentifier = null;
1645                 if (token == TokenNameIdentifier || token == TokenNameVariable || token == TokenNameAND) {
1646                         HashSet set = peekVariableSet();
1647                         while (true) {
1648                                 if (token == TokenNameIdentifier) {
1649                                         typeIdentifier = scanner.getCurrentIdentifierSource();
1650                                         getNextToken();
1651                                 }
1652                                 if (token == TokenNameAND) {
1653                                         getNextToken();
1654                                 }
1655                                 if (token == TokenNameVariable) {
1656                                         if (fMethodVariables != null) {
1657                                                 VariableInfo info;
1658                                                 if (methodDecl.type == MethodDeclaration.FUNCTION_DEFINITION) {
1659                                                         info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_FUNCTION_DEFINITION);
1660                                                 } else {
1661                                                         info = new VariableInfo(scanner.getCurrentTokenStartPosition(), VariableInfo.LEVEL_METHOD_DEFINITION);
1662                                                 }
1663                                                 info.typeIdentifier = typeIdentifier;
1664                                                 fMethodVariables.put(new String(scanner.getCurrentIdentifierSource()), info);
1665                                         }
1666                                         addVariableSet(set);
1667                                         getNextToken();
1668                                         if (token == TokenNameEQUAL) {
1669                                                 getNextToken();
1670                                                 static_scalar();
1671                                         }
1672                                 } else {
1673                                         throwSyntaxError("Variable expected in parameter list.");
1674                                 }
1675                                 if (token != TokenNameCOMMA) {
1676                                         break;
1677                                 }
1678                                 getNextToken();
1679                         }
1680                         return;
1681                 }
1682                 if (!empty_allowed) {
1683                         throwSyntaxError("Identifier expected in parameter list.");
1684                 }
1685         }
1686
1687         private void optional_class_type() {
1688                 // /* empty */
1689                 // | T_STRING
1690         }
1691
1692         // private void parameterDeclaration() {
1693         // //variable
1694         // //variable-reference
1695         // if (token == TokenNameAND) {
1696         // getNextToken();
1697         // if (isVariable()) {
1698         // getNextToken();
1699         // } else {
1700         // throwSyntaxError("Variable expected after reference operator '&'.");
1701         // }
1702         // }
1703         // //variable '=' constant
1704         // if (token == TokenNameVariable) {
1705         // getNextToken();
1706         // if (token == TokenNameEQUAL) {
1707         // getNextToken();
1708         // static_scalar();
1709         // }
1710         // return;
1711         // }
1712         // // if (token == TokenNamethis) {
1713         // // throwSyntaxError("Reserved word '$this' not allowed in parameter
1714         // // declaration.");
1715         // // }
1716         // }
1717
1718         private void labeledStatementList() {
1719                 if (token != TokenNamecase && token != TokenNamedefault) {
1720                         throwSyntaxError("'case' or 'default' expected.");
1721                 }
1722                 do {
1723                         if (token == TokenNamecase) {
1724                                 getNextToken();
1725                                 expr(); // constant();
1726                                 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
1727                                         getNextToken();
1728                                         if (token == TokenNamecase || token == TokenNamedefault) {
1729                                                 // empty case statement ?
1730                                                 continue;
1731                                         }
1732                                         statementList();
1733                                 }
1734                                 // else if (token == TokenNameSEMICOLON) {
1735                                 // setMarker(
1736                                 // "':' expected after 'case' keyword (Found token: " +
1737                                 // scanner.toStringAction(token) + ")",
1738                                 // scanner.getCurrentTokenStartPosition(),
1739                                 // scanner.getCurrentTokenEndPosition(),
1740                                 // INFO);
1741                                 // getNextToken();
1742                                 // if (token == TokenNamecase) { // empty case statement ?
1743                                 // continue;
1744                                 // }
1745                                 // statementList();
1746                                 // }
1747                                 else {
1748                                         throwSyntaxError("':' character expected after 'case' constant (Found token: " + scanner.toStringAction(token) + ")");
1749                                 }
1750                         } else { // TokenNamedefault
1751                                 getNextToken();
1752                                 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
1753                                         getNextToken();
1754                                         if (token == TokenNameRBRACE) {
1755                                                 // empty default case
1756                                                 break;
1757                                         }
1758                                         if (token != TokenNamecase) {
1759                                                 statementList();
1760                                         }
1761                                 } else {
1762                                         throwSyntaxError("':' character expected after 'default'.");
1763                                 }
1764                         }
1765                 } while (token == TokenNamecase || token == TokenNamedefault);
1766         }
1767
1768         private void ifStatementColon(IfStatement iState) {
1769                 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
1770                 // new_else_single T_ENDIF ';'
1771                 HashSet assignedVariableSet = null;
1772                 try {
1773                         Block b = inner_statement_list();
1774                         iState.thenStatement = b;
1775                         checkUnreachable(iState, b);
1776                 } finally {
1777                         assignedVariableSet = removeIfVariableSet();
1778                 }
1779                 if (token == TokenNameelseif) {
1780                         try {
1781                                 pushIfVariableSet();
1782                                 new_elseif_list(iState);
1783                         } finally {
1784                                 HashSet set = removeIfVariableSet();
1785                                 if (assignedVariableSet != null && set != null) {
1786                                         assignedVariableSet.addAll(set);
1787                                 }
1788                         }
1789                 }
1790                 try {
1791                         pushIfVariableSet();
1792                         new_else_single(iState);
1793                 } finally {
1794                         HashSet set = removeIfVariableSet();
1795                         if (assignedVariableSet != null) {
1796                                 HashSet topSet = peekVariableSet();
1797                                 if (topSet != null) {
1798                                         if (set != null) {
1799                                                 topSet.addAll(set);
1800                                         }
1801                                         topSet.addAll(assignedVariableSet);
1802                                 }
1803                         }
1804                 }
1805                 if (token != TokenNameendif) {
1806                         throwSyntaxError("'endif' expected.");
1807                 }
1808                 getNextToken();
1809                 if (token != TokenNameSEMICOLON) {
1810                         reportSyntaxError("';' expected after if-statement.");
1811                         iState.sourceEnd = scanner.getCurrentTokenStartPosition();
1812                 } else {
1813                         iState.sourceEnd = scanner.getCurrentTokenEndPosition();
1814                         getNextToken();
1815                 }
1816         }
1817
1818         private void ifStatement(IfStatement iState) {
1819                 // T_IF '(' expr ')' statement elseif_list else_single
1820                 HashSet assignedVariableSet = null;
1821                 try {
1822                         pushIfVariableSet();
1823                         Statement s = statement();
1824                         iState.thenStatement = s;
1825                         checkUnreachable(iState, s);
1826                 } finally {
1827                         assignedVariableSet = removeIfVariableSet();
1828                 }
1829
1830                 if (token == TokenNameelseif) {
1831                         try {
1832                                 pushIfVariableSet();
1833                                 elseif_list(iState);
1834                         } finally {
1835                                 HashSet set = removeIfVariableSet();
1836                                 if (assignedVariableSet != null && set != null) {
1837                                         assignedVariableSet.addAll(set);
1838                                 }
1839                         }
1840                 }
1841                 try {
1842                         pushIfVariableSet();
1843                         else_single(iState);
1844                 } finally {
1845                         HashSet set = removeIfVariableSet();
1846                         if (assignedVariableSet != null) {
1847                                 HashSet topSet = peekVariableSet();
1848                                 if (topSet != null) {
1849                                         if (set != null) {
1850                                                 topSet.addAll(set);
1851                                         }
1852                                         topSet.addAll(assignedVariableSet);
1853                                 }
1854                         }
1855                 }
1856         }
1857
1858         private void elseif_list(IfStatement iState) {
1859                 // /* empty */
1860                 // | elseif_list T_ELSEIF '(' expr ')' statement
1861                 ArrayList conditionList = new ArrayList();
1862                 ArrayList statementList = new ArrayList();
1863                 Expression e;
1864                 Statement s;
1865                 while (token == TokenNameelseif) {
1866                         getNextToken();
1867                         if (token == TokenNameLPAREN) {
1868                                 getNextToken();
1869                         } else {
1870                                 throwSyntaxError("'(' expected after 'elseif' keyword.");
1871                         }
1872                         e = expr();
1873                         conditionList.add(e);
1874                         if (token == TokenNameRPAREN) {
1875                                 getNextToken();
1876                         } else {
1877                                 throwSyntaxError("')' expected after 'elseif' condition.");
1878                         }
1879                         s = statement();
1880                         statementList.add(s);
1881                         checkUnreachable(iState, s);
1882                 }
1883                 iState.elseifConditions = new Expression[conditionList.size()];
1884                 iState.elseifStatements = new Statement[statementList.size()];
1885                 conditionList.toArray(iState.elseifConditions);
1886                 statementList.toArray(iState.elseifStatements);
1887         }
1888
1889         private void new_elseif_list(IfStatement iState) {
1890                 // /* empty */
1891                 // | new_elseif_list T_ELSEIF '(' expr ')' ':' inner_statement_list
1892                 ArrayList conditionList = new ArrayList();
1893                 ArrayList statementList = new ArrayList();
1894                 Expression e;
1895                 Block b;
1896                 while (token == TokenNameelseif) {
1897                         getNextToken();
1898                         if (token == TokenNameLPAREN) {
1899                                 getNextToken();
1900                         } else {
1901                                 throwSyntaxError("'(' expected after 'elseif' keyword.");
1902                         }
1903                         e = expr();
1904                         conditionList.add(e);
1905                         if (token == TokenNameRPAREN) {
1906                                 getNextToken();
1907                         } else {
1908                                 throwSyntaxError("')' expected after 'elseif' condition.");
1909                         }
1910                         if (token == TokenNameCOLON) {
1911                                 getNextToken();
1912                         } else {
1913                                 throwSyntaxError("':' expected after 'elseif' keyword.");
1914                         }
1915                         b = inner_statement_list();
1916                         statementList.add(b);
1917                         checkUnreachable(iState, b);
1918                 }
1919                 iState.elseifConditions = new Expression[conditionList.size()];
1920                 iState.elseifStatements = new Statement[statementList.size()];
1921                 conditionList.toArray(iState.elseifConditions);
1922                 statementList.toArray(iState.elseifStatements);
1923         }
1924
1925         private void else_single(IfStatement iState) {
1926                 // /* empty */
1927                 // T_ELSE statement
1928                 if (token == TokenNameelse) {
1929                         getNextToken();
1930                         Statement s = statement();
1931                         iState.elseStatement = s;
1932                         checkUnreachable(iState, s);
1933                 } else {
1934                         iState.checkUnreachable = false;
1935                 }
1936                 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
1937         }
1938
1939         private void new_else_single(IfStatement iState) {
1940                 // /* empty */
1941                 // | T_ELSE ':' inner_statement_list
1942                 if (token == TokenNameelse) {
1943                         getNextToken();
1944                         if (token == TokenNameCOLON) {
1945                                 getNextToken();
1946                         } else {
1947                                 throwSyntaxError("':' expected after 'else' keyword.");
1948                         }
1949                         Block b = inner_statement_list();
1950                         iState.elseStatement = b;
1951                         checkUnreachable(iState, b);
1952                 } else {
1953                         iState.checkUnreachable = false;
1954                 }
1955         }
1956
1957         private Block inner_statement_list() {
1958                 // inner_statement_list inner_statement
1959                 // /* empty */
1960                 return statementList();
1961         }
1962
1963         /**
1964          * @param iState
1965          * @param b
1966          */
1967         private void checkUnreachable(IfStatement iState, Statement s) {
1968                 if (s instanceof Block) {
1969                         Block b = (Block) s;
1970                         if (b.statements == null || b.statements.length == 0) {
1971                                 iState.checkUnreachable = false;
1972                         } else {
1973                                 int off = b.statements.length - 1;
1974                                 if (!(b.statements[off] instanceof ReturnStatement) && !(b.statements[off] instanceof ContinueStatement)
1975                                                 && !(b.statements[off] instanceof BreakStatement)) {
1976                                         if (!(b.statements[off] instanceof IfStatement) || !((IfStatement) b.statements[off]).checkUnreachable) {
1977                                                 iState.checkUnreachable = false;
1978                                         }
1979                                 }
1980                         }
1981                 } else {
1982                         if (!(s instanceof ReturnStatement) && !(s instanceof ContinueStatement) && !(s instanceof BreakStatement)) {
1983                                 if (!(s instanceof IfStatement) || !((IfStatement) s).checkUnreachable) {
1984                                         iState.checkUnreachable = false;
1985                                 }
1986                         }
1987                 }
1988         }
1989
1990         // private void elseifStatementList() {
1991         // do {
1992         // elseifStatement();
1993         // switch (token) {
1994         // case TokenNameelse:
1995         // getNextToken();
1996         // if (token == TokenNameCOLON) {
1997         // getNextToken();
1998         // if (token != TokenNameendif) {
1999         // statementList();
2000         // }
2001         // return;
2002         // } else {
2003         // if (token == TokenNameif) { //'else if'
2004         // getNextToken();
2005         // } else {
2006         // throwSyntaxError("':' expected after 'else'.");
2007         // }
2008         // }
2009         // break;
2010         // case TokenNameelseif:
2011         // getNextToken();
2012         // break;
2013         // default:
2014         // return;
2015         // }
2016         // } while (true);
2017         // }
2018
2019         // private void elseifStatement() {
2020         // if (token == TokenNameLPAREN) {
2021         // getNextToken();
2022         // expr();
2023         // if (token != TokenNameRPAREN) {
2024         // throwSyntaxError("')' expected in else-if-statement.");
2025         // }
2026         // getNextToken();
2027         // if (token != TokenNameCOLON) {
2028         // throwSyntaxError("':' expected in else-if-statement.");
2029         // }
2030         // getNextToken();
2031         // if (token != TokenNameendif) {
2032         // statementList();
2033         // }
2034         // }
2035         // }
2036
2037         private void switchStatement() {
2038                 if (token == TokenNameCOLON) {
2039                         // ':' [labeled-statement-list] 'endswitch' ';'
2040                         getNextToken();
2041                         labeledStatementList();
2042                         if (token != TokenNameendswitch) {
2043                                 throwSyntaxError("'endswitch' expected.");
2044                         }
2045                         getNextToken();
2046                         if (token != TokenNameSEMICOLON) {
2047                                 throwSyntaxError("';' expected after switch-statement.");
2048                         }
2049                         getNextToken();
2050                 } else {
2051                         // '{' [labeled-statement-list] '}'
2052                         if (token != TokenNameLBRACE) {
2053                                 throwSyntaxError("'{' expected in switch statement.");
2054                         }
2055                         getNextToken();
2056                         if (token != TokenNameRBRACE) {
2057                                 labeledStatementList();
2058                         }
2059                         if (token != TokenNameRBRACE) {
2060                                 throwSyntaxError("'}' expected in switch statement.");
2061                         }
2062                         getNextToken();
2063                 }
2064         }
2065
2066         private void forStatement() {
2067                 if (token == TokenNameCOLON) {
2068                         getNextToken();
2069                         statementList();
2070                         if (token != TokenNameendfor) {
2071                                 throwSyntaxError("'endfor' expected.");
2072                         }
2073                         getNextToken();
2074                         if (token != TokenNameSEMICOLON) {
2075                                 throwSyntaxError("';' expected after for-statement.");
2076                         }
2077                         getNextToken();
2078                 } else {
2079                         statement();
2080                 }
2081         }
2082
2083         private void whileStatement() {
2084                 // ':' statement-list 'endwhile' ';'
2085                 if (token == TokenNameCOLON) {
2086                         getNextToken();
2087                         statementList();
2088                         if (token != TokenNameendwhile) {
2089                                 throwSyntaxError("'endwhile' expected.");
2090                         }
2091                         getNextToken();
2092                         if (token != TokenNameSEMICOLON) {
2093                                 throwSyntaxError("';' expected after while-statement.");
2094                         }
2095                         getNextToken();
2096                 } else {
2097                         statement();
2098                 }
2099         }
2100
2101         private void foreachStatement() {
2102                 if (token == TokenNameCOLON) {
2103                         getNextToken();
2104                         statementList();
2105                         if (token != TokenNameendforeach) {
2106                                 throwSyntaxError("'endforeach' expected.");
2107                         }
2108                         getNextToken();
2109                         if (token != TokenNameSEMICOLON) {
2110                                 throwSyntaxError("';' expected after foreach-statement.");
2111                         }
2112                         getNextToken();
2113                 } else {
2114                         statement();
2115                 }
2116         }
2117
2118         // private void exitStatus() {
2119         // if (token == TokenNameLPAREN) {
2120         // getNextToken();
2121         // } else {
2122         // throwSyntaxError("'(' expected in 'exit-status'.");
2123         // }
2124         // if (token != TokenNameRPAREN) {
2125         // expression();
2126         // }
2127         // if (token == TokenNameRPAREN) {
2128         // getNextToken();
2129         // } else {
2130         // throwSyntaxError("')' expected after 'exit-status'.");
2131         // }
2132         // }
2133         private void expressionList() {
2134                 do {
2135                         expr();
2136                         if (token == TokenNameCOMMA) {
2137                                 getNextToken();
2138                         } else {
2139                                 break;
2140                         }
2141                 } while (true);
2142         }
2143
2144         private Expression expr() {
2145                 // r_variable
2146                 // | expr_without_variable
2147                 // if (token!=TokenNameEOF) {
2148                 if (Scanner.TRACE) {
2149                         System.out.println("TRACE: expr()");
2150                 }
2151                 return expr_without_variable(true);
2152                 // }
2153         }
2154
2155         private Expression expr_without_variable(boolean only_variable) {
2156                 int exprSourceStart = scanner.getCurrentTokenStartPosition();
2157                 int exprSourceEnd = scanner.getCurrentTokenEndPosition();
2158                 Expression expression = new Expression();
2159                 expression.sourceStart = exprSourceStart;
2160                 // default, may be overwritten
2161                 expression.sourceEnd = exprSourceEnd;
2162                 try {
2163                         // internal_functions_in_yacc
2164                         // | T_CLONE expr
2165                         // | T_PRINT expr
2166                         // | '(' expr ')'
2167                         // | '@' expr
2168                         // | '+' expr
2169                         // | '-' expr
2170                         // | '!' expr
2171                         // | '~' expr
2172                         // | T_INC rw_variable
2173                         // | T_DEC rw_variable
2174                         // | T_INT_CAST expr
2175                         // | T_DOUBLE_CAST expr
2176                         // | T_STRING_CAST expr
2177                         // | T_ARRAY_CAST expr
2178                         // | T_OBJECT_CAST expr
2179                         // | T_BOOL_CAST expr
2180                         // | T_UNSET_CAST expr
2181                         // | T_EXIT exit_expr
2182                         // | scalar
2183                         // | T_ARRAY '(' array_pair_list ')'
2184                         // | '`' encaps_list '`'
2185                         // | T_LIST '(' assignment_list ')' '=' expr
2186                         // | T_NEW class_name_reference ctor_arguments
2187                         // | variable '=' expr
2188                         // | variable '=' '&' variable
2189                         // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2190                         // | variable T_PLUS_EQUAL expr
2191                         // | variable T_MINUS_EQUAL expr
2192                         // | variable T_MUL_EQUAL expr
2193                         // | variable T_DIV_EQUAL expr
2194                         // | variable T_CONCAT_EQUAL expr
2195                         // | variable T_MOD_EQUAL expr
2196                         // | variable T_AND_EQUAL expr
2197                         // | variable T_OR_EQUAL expr
2198                         // | variable T_XOR_EQUAL expr
2199                         // | variable T_SL_EQUAL expr
2200                         // | variable T_SR_EQUAL expr
2201                         // | rw_variable T_INC
2202                         // | rw_variable T_DEC
2203                         // | expr T_BOOLEAN_OR expr
2204                         // | expr T_BOOLEAN_AND expr
2205                         // | expr T_LOGICAL_OR expr
2206                         // | expr T_LOGICAL_AND expr
2207                         // | expr T_LOGICAL_XOR expr
2208                         // | expr '|' expr
2209                         // | expr '&' expr
2210                         // | expr '^' expr
2211                         // | expr '.' expr
2212                         // | expr '+' expr
2213                         // | expr '-' expr
2214                         // | expr '*' expr
2215                         // | expr '/' expr
2216                         // | expr '%' expr
2217                         // | expr T_SL expr
2218                         // | expr T_SR expr
2219                         // | expr T_IS_IDENTICAL expr
2220                         // | expr T_IS_NOT_IDENTICAL expr
2221                         // | expr T_IS_EQUAL expr
2222                         // | expr T_IS_NOT_EQUAL expr
2223                         // | expr '<' expr
2224                         // | expr T_IS_SMALLER_OR_EQUAL expr
2225                         // | expr '>' expr
2226                         // | expr T_IS_GREATER_OR_EQUAL expr
2227                         // | expr T_INSTANCEOF class_name_reference
2228                         // | expr '?' expr ':' expr
2229                         if (Scanner.TRACE) {
2230                                 System.out.println("TRACE: expr_without_variable() PART 1");
2231                         }
2232                         switch (token) {
2233                         case TokenNameisset:
2234                                 // T_ISSET '(' isset_variables ')'
2235                                 getNextToken();
2236                                 if (token != TokenNameLPAREN) {
2237                                         throwSyntaxError("'(' expected after keyword 'isset'");
2238                                 }
2239                                 getNextToken();
2240                                 isset_variables();
2241                                 if (token != TokenNameRPAREN) {
2242                                         throwSyntaxError("')' expected after keyword 'isset'");
2243                                 }
2244                                 getNextToken();
2245                                 break;
2246                         case TokenNameempty:
2247                                 getNextToken();
2248                                 if (token != TokenNameLPAREN) {
2249                                         throwSyntaxError("'(' expected after keyword 'empty'");
2250                                 }
2251                                 getNextToken();
2252                                 variable(true, false);
2253                                 if (token != TokenNameRPAREN) {
2254                                         throwSyntaxError("')' expected after keyword 'empty'");
2255                                 }
2256                                 getNextToken();
2257                                 break;
2258                         case TokenNameeval:
2259                         case TokenNameinclude:
2260                         case TokenNameinclude_once:
2261                         case TokenNamerequire:
2262                         case TokenNamerequire_once:
2263                                 internal_functions_in_yacc();
2264                                 break;
2265                         // | '(' expr ')'
2266                         case TokenNameLPAREN:
2267                                 getNextToken();
2268                                 expr();
2269                                 if (token == TokenNameRPAREN) {
2270                                         getNextToken();
2271                                 } else {
2272                                         throwSyntaxError("')' expected in expression.");
2273                                 }
2274                                 break;
2275                         // | T_CLONE expr
2276                         // | T_PRINT expr
2277                         // | '@' expr
2278                         // | '+' expr
2279                         // | '-' expr
2280                         // | '!' expr
2281                         // | '~' expr
2282                         // | T_INT_CAST expr
2283                         // | T_DOUBLE_CAST expr
2284                         // | T_STRING_CAST expr
2285                         // | T_ARRAY_CAST expr
2286                         // | T_OBJECT_CAST expr
2287                         // | T_BOOL_CAST expr
2288                         // | T_UNSET_CAST expr
2289                         case TokenNameclone:
2290                         case TokenNameprint:
2291                         case TokenNameAT:
2292                         case TokenNamePLUS:
2293                         case TokenNameMINUS:
2294                         case TokenNameNOT:
2295                         case TokenNameTWIDDLE:
2296                         case TokenNameintCAST:
2297                         case TokenNamedoubleCAST:
2298                         case TokenNamestringCAST:
2299                         case TokenNamearrayCAST:
2300                         case TokenNameobjectCAST:
2301                         case TokenNameboolCAST:
2302                         case TokenNameunsetCAST:
2303                                 getNextToken();
2304                                 expr();
2305                                 break;
2306                         case TokenNameexit:
2307                                 getNextToken();
2308                                 exit_expr();
2309                                 break;
2310                         // scalar:
2311                         // T_STRING
2312                         // | T_STRING_VARNAME
2313                         // | class_constant
2314                         // | T_START_HEREDOC encaps_list T_END_HEREDOC
2315                         // | '`' encaps_list '`'
2316                         // | common_scalar
2317                         // | '`' encaps_list '`'
2318                         // case TokenNameEncapsedString0:
2319                         // scanner.encapsedStringStack.push(new Character('`'));
2320                         // getNextToken();
2321                         // try {
2322                         // if (token == TokenNameEncapsedString0) {
2323                         // } else {
2324                         // encaps_list();
2325                         // if (token != TokenNameEncapsedString0) {
2326                         // throwSyntaxError("\'`\' expected at end of string" + "(Found token: " +
2327                         // scanner.toStringAction(token) + " )");
2328                         // }
2329                         // }
2330                         // } finally {
2331                         // scanner.encapsedStringStack.pop();
2332                         // getNextToken();
2333                         // }
2334                         // break;
2335                         // // | '\'' encaps_list '\''
2336                         // case TokenNameEncapsedString1:
2337                         // scanner.encapsedStringStack.push(new Character('\''));
2338                         // getNextToken();
2339                         // try {
2340                         // exprSourceStart = scanner.getCurrentTokenStartPosition();
2341                         // if (token == TokenNameEncapsedString1) {
2342                         // expression = new
2343                         // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2344                         // exprSourceStart, scanner
2345                         // .getCurrentTokenEndPosition());
2346                         // } else {
2347                         // encaps_list();
2348                         // if (token != TokenNameEncapsedString1) {
2349                         // throwSyntaxError("\'\'\' expected at end of string" + "(Found token: "
2350                         // + scanner.toStringAction(token) + " )");
2351                         // } else {
2352                         // expression = new
2353                         // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2354                         // exprSourceStart, scanner
2355                         // .getCurrentTokenEndPosition());
2356                         // }
2357                         // }
2358                         // } finally {
2359                         // scanner.encapsedStringStack.pop();
2360                         // getNextToken();
2361                         // }
2362                         // break;
2363                         // //| '"' encaps_list '"'
2364                         // case TokenNameEncapsedString2:
2365                         // scanner.encapsedStringStack.push(new Character('"'));
2366                         // getNextToken();
2367                         // try {
2368                         // exprSourceStart = scanner.getCurrentTokenStartPosition();
2369                         // if (token == TokenNameEncapsedString2) {
2370                         // expression = new
2371                         // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2372                         // exprSourceStart, scanner
2373                         // .getCurrentTokenEndPosition());
2374                         // } else {
2375                         // encaps_list();
2376                         // if (token != TokenNameEncapsedString2) {
2377                         // throwSyntaxError("'\"' expected at end of string" + "(Found token: " +
2378                         // scanner.toStringAction(token) + " )");
2379                         // } else {
2380                         // expression = new
2381                         // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2382                         // exprSourceStart, scanner
2383                         // .getCurrentTokenEndPosition());
2384                         // }
2385                         // }
2386                         // } finally {
2387                         // scanner.encapsedStringStack.pop();
2388                         // getNextToken();
2389                         // }
2390                         // break;
2391                         case TokenNameStringDoubleQuote:
2392                                 expression = new StringLiteralDQ(scanner.getCurrentStringLiteralSource(), scanner.getCurrentTokenStartPosition(), scanner
2393                                                 .getCurrentTokenEndPosition());
2394                                 common_scalar();
2395                                 break;
2396                         case TokenNameStringSingleQuote:
2397                                 expression = new StringLiteralSQ(scanner.getCurrentStringLiteralSource(), scanner.getCurrentTokenStartPosition(), scanner
2398                                                 .getCurrentTokenEndPosition());
2399                                 common_scalar();
2400                                 break;
2401                         case TokenNameIntegerLiteral:
2402                         case TokenNameDoubleLiteral:
2403                         case TokenNameStringInterpolated:
2404                         case TokenNameFILE:
2405                         case TokenNameLINE:
2406                         case TokenNameCLASS_C:
2407                         case TokenNameMETHOD_C:
2408                         case TokenNameFUNC_C:
2409                                 common_scalar();
2410                                 break;
2411                         case TokenNameHEREDOC:
2412                                 getNextToken();
2413                                 break;
2414                         case TokenNamearray:
2415                                 // T_ARRAY '(' array_pair_list ')'
2416                                 getNextToken();
2417                                 if (token == TokenNameLPAREN) {
2418                                         getNextToken();
2419                                         if (token == TokenNameRPAREN) {
2420                                                 getNextToken();
2421                                                 break;
2422                                         }
2423                                         array_pair_list();
2424                                         if (token != TokenNameRPAREN) {
2425                                                 throwSyntaxError("')' or ',' expected after keyword 'array'" + "(Found token: " + scanner.toStringAction(token) + ")");
2426                                         }
2427                                         getNextToken();
2428                                 } else {
2429                                         throwSyntaxError("'(' expected after keyword 'array'" + "(Found token: " + scanner.toStringAction(token) + ")");
2430                                 }
2431                                 break;
2432                         case TokenNamelist:
2433                                 // | T_LIST '(' assignment_list ')' '=' expr
2434                                 getNextToken();
2435                                 if (token == TokenNameLPAREN) {
2436                                         getNextToken();
2437                                         assignment_list();
2438                                         if (token != TokenNameRPAREN) {
2439                                                 throwSyntaxError("')' expected after 'list' keyword.");
2440                                         }
2441                                         getNextToken();
2442                                         if (token != TokenNameEQUAL) {
2443                                                 throwSyntaxError("'=' expected after 'list' keyword.");
2444                                         }
2445                                         getNextToken();
2446                                         expr();
2447                                 } else {
2448                                         throwSyntaxError("'(' expected after 'list' keyword.");
2449                                 }
2450                                 break;
2451                         case TokenNamenew:
2452                                 // | T_NEW class_name_reference ctor_arguments
2453                                 getNextToken();
2454                                 Expression typeRef = class_name_reference();
2455                                 ctor_arguments();
2456                                 if (typeRef != null) {
2457                                         expression = typeRef;
2458                                 }
2459                                 break;
2460                         // | T_INC rw_variable
2461                         // | T_DEC rw_variable
2462                         case TokenNamePLUS_PLUS:
2463                         case TokenNameMINUS_MINUS:
2464                                 getNextToken();
2465                                 rw_variable();
2466                                 break;
2467                         // | variable '=' expr
2468                         // | variable '=' '&' variable
2469                         // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2470                         // | variable T_PLUS_EQUAL expr
2471                         // | variable T_MINUS_EQUAL expr
2472                         // | variable T_MUL_EQUAL expr
2473                         // | variable T_DIV_EQUAL expr
2474                         // | variable T_CONCAT_EQUAL expr
2475                         // | variable T_MOD_EQUAL expr
2476                         // | variable T_AND_EQUAL expr
2477                         // | variable T_OR_EQUAL expr
2478                         // | variable T_XOR_EQUAL expr
2479                         // | variable T_SL_EQUAL expr
2480                         // | variable T_SR_EQUAL expr
2481                         // | rw_variable T_INC
2482                         // | rw_variable T_DEC
2483                         case TokenNameIdentifier:
2484                         case TokenNameVariable:
2485                         case TokenNameDOLLAR:
2486                                 Expression lhs = null;
2487                                 boolean rememberedVar = false;
2488                                 if (token == TokenNameIdentifier) {
2489                                         lhs = identifier(true, true);
2490                                         if (lhs != null) {
2491                                                 expression = lhs;
2492                                         }
2493                                 } else {
2494                                         lhs = variable(true, true);
2495                                         if (lhs != null) {
2496                                                 expression = lhs;
2497                                         }
2498                                         if (lhs != null && lhs instanceof FieldReference && token != TokenNameEQUAL && token != TokenNamePLUS_EQUAL
2499                                                         && token != TokenNameMINUS_EQUAL && token != TokenNameMULTIPLY_EQUAL && token != TokenNameDIVIDE_EQUAL
2500                                                         && token != TokenNameDOT_EQUAL && token != TokenNameREMAINDER_EQUAL && token != TokenNameAND_EQUAL
2501                                                         && token != TokenNameOR_EQUAL && token != TokenNameXOR_EQUAL && token != TokenNameRIGHT_SHIFT_EQUAL
2502                                                         && token != TokenNameLEFT_SHIFT_EQUAL) {
2503                                                 FieldReference ref = (FieldReference) lhs;
2504                                                 if (!containsVariableSet(ref.token)) {
2505                                                         problemReporter.uninitializedLocalVariable(new String(ref.token), ref.sourceStart(), ref.sourceEnd(),
2506                                                                         referenceContext, compilationUnit.compilationResult);
2507                                                         addVariableSet(ref.token);
2508                                                 }
2509                                         }
2510                                 }
2511                                 switch (token) {
2512                                 case TokenNameEQUAL:
2513                                         if (lhs != null && lhs instanceof FieldReference) {
2514                                                 addVariableSet(((FieldReference) lhs).token);
2515                                         }
2516                                         getNextToken();
2517                                         if (token == TokenNameAND) {
2518                                                 getNextToken();
2519                                                 if (token == TokenNamenew) {
2520                                                         // | variable '=' '&' T_NEW class_name_reference
2521                                                         // ctor_arguments
2522                                                         getNextToken();
2523                                                         SingleTypeReference classRef = class_name_reference();
2524                                                         ctor_arguments();
2525                                                         if (classRef != null) {
2526                                                                 if (lhs != null && lhs instanceof FieldReference) {
2527                                                                         // example:
2528                                                                         // $var = & new Object();
2529                                                                         if (fMethodVariables != null) {
2530                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
2531                                                                                 lhsInfo.reference = classRef;
2532                                                                                 lhsInfo.typeIdentifier = classRef.token;
2533                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
2534                                                                                 rememberedVar = true;
2535                                                                         }
2536                                                                 }
2537                                                         }
2538                                                 } else {
2539                                                         Expression rhs = variable(false, false);
2540                                                         if (rhs != null && rhs instanceof FieldReference && lhs != null && lhs instanceof FieldReference) {
2541                                                                 // example:
2542                                                                 // $var = &$ref;
2543                                                                 if (fMethodVariables != null) {
2544                                                                         VariableInfo rhsInfo = (VariableInfo) fMethodVariables.get(((FieldReference) rhs).token);
2545                                                                         if (rhsInfo != null && rhsInfo.reference != null) {
2546                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
2547                                                                                 lhsInfo.reference = rhsInfo.reference;
2548                                                                                 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
2549                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
2550                                                                                 rememberedVar = true;
2551                                                                         }
2552                                                                 }
2553                                                         }
2554                                                 }
2555                                         } else {
2556                                                 Expression rhs = expr();
2557                                                 if (lhs != null && lhs instanceof FieldReference) {
2558                                                         if (rhs != null && rhs instanceof FieldReference) {
2559                                                                 // example:
2560                                                                 // $var = $ref;
2561                                                                 if (fMethodVariables != null) {
2562                                                                         VariableInfo rhsInfo = (VariableInfo) fMethodVariables.get(((FieldReference) rhs).token);
2563                                                                         if (rhsInfo != null && rhsInfo.reference != null) {
2564                                                                                 VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
2565                                                                                 lhsInfo.reference = rhsInfo.reference;
2566                                                                                 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
2567                                                                                 fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
2568                                                                                 rememberedVar = true;
2569                                                                         }
2570                                                                 }
2571                                                         } else if (rhs != null && rhs instanceof SingleTypeReference) {
2572                                                                 // example:
2573                                                                 // $var = new Object();
2574                                                                 if (fMethodVariables != null) {
2575                                                                         VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
2576                                                                         lhsInfo.reference = (SingleTypeReference) rhs;
2577                                                                         lhsInfo.typeIdentifier = ((SingleTypeReference) rhs).token;
2578                                                                         fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
2579                                                                         rememberedVar = true;
2580                                                                 }
2581                                                         }
2582                                                 }
2583                                         }
2584                                         if (rememberedVar == false && lhs != null && lhs instanceof FieldReference) {
2585                                                 if (fMethodVariables != null) {
2586                                                         VariableInfo lhsInfo = new VariableInfo(((FieldReference) lhs).sourceStart());
2587                                                         fMethodVariables.put(new String(((FieldReference) lhs).token), lhsInfo);
2588                                                 }
2589                                         }
2590                                         break;
2591                                 case TokenNamePLUS_EQUAL:
2592                                 case TokenNameMINUS_EQUAL:
2593                                 case TokenNameMULTIPLY_EQUAL:
2594                                 case TokenNameDIVIDE_EQUAL:
2595                                 case TokenNameDOT_EQUAL:
2596                                 case TokenNameREMAINDER_EQUAL:
2597                                 case TokenNameAND_EQUAL:
2598                                 case TokenNameOR_EQUAL:
2599                                 case TokenNameXOR_EQUAL:
2600                                 case TokenNameRIGHT_SHIFT_EQUAL:
2601                                 case TokenNameLEFT_SHIFT_EQUAL:
2602                                         if (lhs != null && lhs instanceof FieldReference) {
2603                                                 addVariableSet(((FieldReference) lhs).token);
2604                                         }
2605                                         getNextToken();
2606                                         expr();
2607                                         break;
2608                                 case TokenNamePLUS_PLUS:
2609                                 case TokenNameMINUS_MINUS:
2610                                         getNextToken();
2611                                         break;
2612                                 default:
2613                                         if (!only_variable) {
2614                                                 throwSyntaxError("Variable expression not allowed (found token '" + scanner.toStringAction(token) + "').");
2615                                         }
2616                                         if (lhs != null) {
2617                                                 expression = lhs;
2618                                         }
2619                                 }
2620                                 break;
2621                         default:
2622                                 if (token != TokenNameINLINE_HTML) {
2623                                         if (token > TokenNameKEYWORD) {
2624                                                 getNextToken();
2625                                                 break;
2626                                         } else {
2627                                                 // System.out.println(scanner.getCurrentTokenStartPosition());
2628                                                 // System.out.println(scanner.getCurrentTokenEndPosition());
2629
2630                                                 throwSyntaxError("Error in expression (found token '" + scanner.toStringAction(token) + "').");
2631                                         }
2632                                 }
2633                                 return expression;
2634                         }
2635                         if (Scanner.TRACE) {
2636                                 System.out.println("TRACE: expr_without_variable() PART 2");
2637                         }
2638                         // | expr T_BOOLEAN_OR expr
2639                         // | expr T_BOOLEAN_AND expr
2640                         // | expr T_LOGICAL_OR expr
2641                         // | expr T_LOGICAL_AND expr
2642                         // | expr T_LOGICAL_XOR expr
2643                         // | expr '|' expr
2644                         // | expr '&' expr
2645                         // | expr '^' expr
2646                         // | expr '.' expr
2647                         // | expr '+' expr
2648                         // | expr '-' expr
2649                         // | expr '*' expr
2650                         // | expr '/' expr
2651                         // | expr '%' expr
2652                         // | expr T_SL expr
2653                         // | expr T_SR expr
2654                         // | expr T_IS_IDENTICAL expr
2655                         // | expr T_IS_NOT_IDENTICAL expr
2656                         // | expr T_IS_EQUAL expr
2657                         // | expr T_IS_NOT_EQUAL expr
2658                         // | expr '<' expr
2659                         // | expr T_IS_SMALLER_OR_EQUAL expr
2660                         // | expr '>' expr
2661                         // | expr T_IS_GREATER_OR_EQUAL expr
2662                         while (true) {
2663                                 switch (token) {
2664                                 case TokenNameOR_OR:
2665                                         getNextToken();
2666                                         expression = new OR_OR_Expression(expression, expr(), token);
2667                                         break;
2668                                 case TokenNameAND_AND:
2669                                         getNextToken();
2670                                         expression = new AND_AND_Expression(expression, expr(), token);
2671                                         break;
2672                                 case TokenNameEQUAL_EQUAL:
2673                                         getNextToken();
2674                                         expression = new EqualExpression(expression, expr(), token);
2675                                         break;
2676                                 case TokenNameand:
2677                                 case TokenNameor:
2678                                 case TokenNamexor:
2679                                 case TokenNameAND:
2680                                 case TokenNameOR:
2681                                 case TokenNameXOR:
2682                                 case TokenNameDOT:
2683                                 case TokenNamePLUS:
2684                                 case TokenNameMINUS:
2685                                 case TokenNameMULTIPLY:
2686                                 case TokenNameDIVIDE:
2687                                 case TokenNameREMAINDER:
2688                                 case TokenNameLEFT_SHIFT:
2689                                 case TokenNameRIGHT_SHIFT:
2690                                 case TokenNameEQUAL_EQUAL_EQUAL:
2691                                 case TokenNameNOT_EQUAL_EQUAL:
2692                                 case TokenNameNOT_EQUAL:
2693                                 case TokenNameLESS:
2694                                 case TokenNameLESS_EQUAL:
2695                                 case TokenNameGREATER:
2696                                 case TokenNameGREATER_EQUAL:
2697                                         getNextToken();
2698                                         expression = new BinaryExpression(expression, expr(), token);
2699                                         break;
2700                                 // | expr T_INSTANCEOF class_name_reference
2701                                 // | expr '?' expr ':' expr
2702                                 case TokenNameinstanceof:
2703                                         getNextToken();
2704                                         TypeReference classRef = class_name_reference();
2705                                         if (classRef != null) {
2706                                                 expression = new InstanceOfExpression(expression, classRef, OperatorIds.INSTANCEOF);
2707                                                 expression.sourceStart = exprSourceStart;
2708                                                 expression.sourceEnd = scanner.getCurrentTokenEndPosition();
2709                                         }
2710                                         break;
2711                                 case TokenNameQUESTION:
2712                                         getNextToken();
2713                                         Expression valueIfTrue = expr();
2714                                         if (token != TokenNameCOLON) {
2715                                                 throwSyntaxError("':' expected in conditional expression.");
2716                                         }
2717                                         getNextToken();
2718                                         Expression valueIfFalse = expr();
2719
2720                                         expression = new ConditionalExpression(expression, valueIfTrue, valueIfFalse);
2721                                         break;
2722                                 default:
2723                                         return expression;
2724                                 }
2725                         }
2726                 } catch (SyntaxError e) {
2727                         // try to find next token after expression with errors:
2728                         if (token == TokenNameSEMICOLON) {
2729                                 getNextToken();
2730                                 return expression;
2731                         }
2732                         if (token == TokenNameRBRACE || token == TokenNameRPAREN || token == TokenNameRBRACKET) {
2733                                 getNextToken();
2734                                 return expression;
2735                         }
2736                         throw e;
2737                 }
2738         }
2739
2740         private SingleTypeReference class_name_reference() {
2741                 // class_name_reference:
2742                 // T_STRING
2743                 // | dynamic_class_name_reference
2744                 SingleTypeReference ref = null;
2745                 if (Scanner.TRACE) {
2746                         System.out.println("TRACE: class_name_reference()");
2747                 }
2748                 if (token == TokenNameIdentifier) {
2749                         ref = new SingleTypeReference(scanner.getCurrentIdentifierSource(), scanner.getCurrentTokenStartPosition());
2750                         getNextToken();
2751                 } else {
2752                         ref = null;
2753                         dynamic_class_name_reference();
2754                 }
2755                 return ref;
2756         }
2757
2758         private void dynamic_class_name_reference() {
2759                 // dynamic_class_name_reference:
2760                 // base_variable T_OBJECT_OPERATOR object_property
2761                 // dynamic_class_name_variable_properties
2762                 // | base_variable
2763                 if (Scanner.TRACE) {
2764                         System.out.println("TRACE: dynamic_class_name_reference()");
2765                 }
2766                 base_variable(true);
2767                 if (token == TokenNameMINUS_GREATER) {
2768                         getNextToken();
2769                         object_property();
2770                         dynamic_class_name_variable_properties();
2771                 }
2772         }
2773
2774         private void dynamic_class_name_variable_properties() {
2775                 // dynamic_class_name_variable_properties:
2776                 // dynamic_class_name_variable_properties
2777                 // dynamic_class_name_variable_property
2778                 // | /* empty */
2779                 if (Scanner.TRACE) {
2780                         System.out.println("TRACE: dynamic_class_name_variable_properties()");
2781                 }
2782                 while (token == TokenNameMINUS_GREATER) {
2783                         dynamic_class_name_variable_property();
2784                 }
2785         }
2786
2787         private void dynamic_class_name_variable_property() {
2788                 // dynamic_class_name_variable_property:
2789                 // T_OBJECT_OPERATOR object_property
2790                 if (Scanner.TRACE) {
2791                         System.out.println("TRACE: dynamic_class_name_variable_property()");
2792                 }
2793                 if (token == TokenNameMINUS_GREATER) {
2794                         getNextToken();
2795                         object_property();
2796                 }
2797         }
2798
2799         private void ctor_arguments() {
2800                 // ctor_arguments:
2801                 // /* empty */
2802                 // | '(' function_call_parameter_list ')'
2803                 if (token == TokenNameLPAREN) {
2804                         getNextToken();
2805                         if (token == TokenNameRPAREN) {
2806                                 getNextToken();
2807                                 return;
2808                         }
2809                         non_empty_function_call_parameter_list();
2810                         if (token != TokenNameRPAREN) {
2811                                 throwSyntaxError("')' expected in ctor_arguments.");
2812                         }
2813                         getNextToken();
2814                 }
2815         }
2816
2817         private void assignment_list() {
2818                 // assignment_list:
2819                 // assignment_list ',' assignment_list_element
2820                 // | assignment_list_element
2821                 while (true) {
2822                         assignment_list_element();
2823                         if (token != TokenNameCOMMA) {
2824                                 break;
2825                         }
2826                         getNextToken();
2827                 }
2828         }
2829
2830         private void assignment_list_element() {
2831                 // assignment_list_element:
2832                 // variable
2833                 // | T_LIST '(' assignment_list ')'
2834                 // | /* empty */
2835                 if (token == TokenNameVariable) {
2836                         variable(true, false);
2837                 } else if (token == TokenNameDOLLAR) {
2838                         variable(false, false);
2839                 } else {
2840                         if (token == TokenNamelist) {
2841                                 getNextToken();
2842                                 if (token == TokenNameLPAREN) {
2843                                         getNextToken();
2844                                         assignment_list();
2845                                         if (token != TokenNameRPAREN) {
2846                                                 throwSyntaxError("')' expected after 'list' keyword.");
2847                                         }
2848                                         getNextToken();
2849                                 } else {
2850                                         throwSyntaxError("'(' expected after 'list' keyword.");
2851                                 }
2852                         }
2853                 }
2854         }
2855
2856         private void array_pair_list() {
2857                 // array_pair_list:
2858                 // /* empty */
2859                 // | non_empty_array_pair_list possible_comma
2860                 non_empty_array_pair_list();
2861                 if (token == TokenNameCOMMA) {
2862                         getNextToken();
2863                 }
2864         }
2865
2866         private void non_empty_array_pair_list() {
2867                 // non_empty_array_pair_list:
2868                 // non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr
2869                 // | non_empty_array_pair_list ',' expr
2870                 // | expr T_DOUBLE_ARROW expr
2871                 // | expr
2872                 // | non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
2873                 // | non_empty_array_pair_list ',' '&' w_variable
2874                 // | expr T_DOUBLE_ARROW '&' w_variable
2875                 // | '&' w_variable
2876                 while (true) {
2877                         if (token == TokenNameAND) {
2878                                 getNextToken();
2879                                 variable(true, false);
2880                         } else {
2881                                 expr();
2882                                 if (token == TokenNameAND) {
2883                                         getNextToken();
2884                                         variable(true, false);
2885                                 } else if (token == TokenNameEQUAL_GREATER) {
2886                                         getNextToken();
2887                                         if (token == TokenNameAND) {
2888                                                 getNextToken();
2889                                                 variable(true, false);
2890                                         } else {
2891                                                 expr();
2892                                         }
2893                                 }
2894                         }
2895                         if (token != TokenNameCOMMA) {
2896                                 return;
2897                         }
2898                         getNextToken();
2899                         if (token == TokenNameRPAREN) {
2900                                 return;
2901                         }
2902                 }
2903         }
2904
2905         // private void variableList() {
2906         // do {
2907         // variable();
2908         // if (token == TokenNameCOMMA) {
2909         // getNextToken();
2910         // } else {
2911         // break;
2912         // }
2913         // } while (true);
2914         // }
2915         private Expression variable_without_objects(boolean lefthandside, boolean ignoreVar) {
2916                 // variable_without_objects:
2917                 // reference_variable
2918                 // | simple_indirect_reference reference_variable
2919                 if (Scanner.TRACE) {
2920                         System.out.println("TRACE: variable_without_objects()");
2921                 }
2922                 while (token == TokenNameDOLLAR) {
2923                         getNextToken();
2924                 }
2925                 return reference_variable(lefthandside, ignoreVar);
2926         }
2927
2928         private Expression function_call(boolean lefthandside, boolean ignoreVar) {
2929                 // function_call:
2930                 // T_STRING '(' function_call_parameter_list ')'
2931                 // | class_constant '(' function_call_parameter_list ')'
2932                 // | static_member '(' function_call_parameter_list ')'
2933                 // | variable_without_objects '(' function_call_parameter_list ')'
2934                 char[] defineName = null;
2935                 char[] ident = null;
2936                 int startPos = 0;
2937                 int endPos = 0;
2938                 Expression ref = null;
2939                 if (Scanner.TRACE) {
2940                         System.out.println("TRACE: function_call()");
2941                 }
2942                 if (token == TokenNameIdentifier) {
2943                         ident = scanner.getCurrentIdentifierSource();
2944                         defineName = ident;
2945                         startPos = scanner.getCurrentTokenStartPosition();
2946                         endPos = scanner.getCurrentTokenEndPosition();
2947                         getNextToken();
2948                         switch (token) {
2949                         case TokenNamePAAMAYIM_NEKUDOTAYIM:
2950                                 // static member:
2951                                 defineName = null;
2952                                 getNextToken();
2953                                 if (token == TokenNameIdentifier) {
2954                                         // class _constant
2955                                         getNextToken();
2956                                 } else {
2957                                         // static member:
2958                                         variable_without_objects(true, false);
2959                                 }
2960                                 break;
2961                         }
2962                 } else {
2963                         ref = variable_without_objects(lefthandside, ignoreVar);
2964                 }
2965                 if (token != TokenNameLPAREN) {
2966                         if (defineName != null) {
2967                                 // does this identifier contain only uppercase characters?
2968                                 if (defineName.length == 3) {
2969                                         if (defineName[0] == 'd' && defineName[1] == 'i' && defineName[2] == 'e') {
2970                                                 defineName = null;
2971                                         }
2972                                 } else if (defineName.length == 4) {
2973                                         if (defineName[0] == 't' && defineName[1] == 'r' && defineName[2] == 'u' && defineName[3] == 'e') {
2974                                                 defineName = null;
2975                                         } else if (defineName[0] == 'n' && defineName[1] == 'u' && defineName[2] == 'l' && defineName[3] == 'l') {
2976                                                 defineName = null;
2977                                         }
2978                                 } else if (defineName.length == 5) {
2979                                         if (defineName[0] == 'f' && defineName[1] == 'a' && defineName[2] == 'l' && defineName[3] == 's' && defineName[4] == 'e') {
2980                                                 defineName = null;
2981                                         }
2982                                 }
2983                                 if (defineName != null) {
2984                                         for (int i = 0; i < defineName.length; i++) {
2985                                                 if (Character.isLowerCase(defineName[i])) {
2986                                                         problemReporter.phpUppercaseIdentifierWarning(startPos, endPos, referenceContext, compilationUnit.compilationResult);
2987                                                         break;
2988                                                 }
2989                                         }
2990                                 }
2991                         }
2992                 } else {
2993                         getNextToken();
2994                         if (token == TokenNameRPAREN) {
2995                                 getNextToken();
2996                                 return ref;
2997                         }
2998                         non_empty_function_call_parameter_list();
2999                         if (token != TokenNameRPAREN) {
3000                                 String functionName;
3001                                 if (ident == null) {
3002                                         functionName = new String(" ");
3003                                 } else {
3004                                         functionName = new String(ident);
3005                                 }
3006                                 throwSyntaxError("')' expected in function call (" + functionName + ").");
3007                         }
3008                         getNextToken();
3009                 }
3010                 return ref;
3011         }
3012
3013         // private void function_call_parameter_list() {
3014         // function_call_parameter_list:
3015         // non_empty_function_call_parameter_list { $$ = $1; }
3016         // | /* empty */
3017         // }
3018         private void non_empty_function_call_parameter_list() {
3019                 // non_empty_function_call_parameter_list:
3020                 // expr_without_variable
3021                 // | variable
3022                 // | '&' w_variable
3023                 // | non_empty_function_call_parameter_list ',' expr_without_variable
3024                 // | non_empty_function_call_parameter_list ',' variable
3025                 // | non_empty_function_call_parameter_list ',' '&' w_variable
3026                 if (Scanner.TRACE) {
3027                         System.out.println("TRACE: non_empty_function_call_parameter_list()");
3028                 }
3029                 while (true) {
3030                         if (token == TokenNameAND) {
3031                                 getNextToken();
3032                                 w_variable(true);
3033                         } else {
3034                                 // if (token == TokenNameIdentifier || token ==
3035                                 // TokenNameVariable
3036                                 // || token == TokenNameDOLLAR) {
3037                                 // variable();
3038                                 // } else {
3039                                 expr_without_variable(true);
3040                                 // }
3041                         }
3042                         if (token != TokenNameCOMMA) {
3043                                 break;
3044                         }
3045                         getNextToken();
3046                 }
3047         }
3048
3049         private void fully_qualified_class_name() {
3050                 if (token == TokenNameIdentifier) {
3051                         getNextToken();
3052                 } else {
3053                         throwSyntaxError("Class name expected.");
3054                 }
3055         }
3056
3057         private void static_member() {
3058                 // static_member:
3059                 // fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM
3060                 // variable_without_objects
3061                 if (Scanner.TRACE) {
3062                         System.out.println("TRACE: static_member()");
3063                 }
3064                 fully_qualified_class_name();
3065                 if (token != TokenNamePAAMAYIM_NEKUDOTAYIM) {
3066                         throwSyntaxError("'::' expected after class name (static_member).");
3067                 }
3068                 getNextToken();
3069                 variable_without_objects(false, false);
3070         }
3071
3072         private Expression base_variable_with_function_calls(boolean lefthandside, boolean ignoreVar) {
3073                 // base_variable_with_function_calls:
3074                 // base_variable
3075                 // | function_call
3076                 if (Scanner.TRACE) {
3077                         System.out.println("TRACE: base_variable_with_function_calls()");
3078                 }
3079                 return function_call(lefthandside, ignoreVar);
3080         }
3081
3082         private Expression base_variable(boolean lefthandside) {
3083                 // base_variable:
3084                 // reference_variable
3085                 // | simple_indirect_reference reference_variable
3086                 // | static_member
3087                 Expression ref = null;
3088                 if (Scanner.TRACE) {
3089                         System.out.println("TRACE: base_variable()");
3090                 }
3091                 if (token == TokenNameIdentifier) {
3092                         static_member();
3093                 } else {
3094                         while (token == TokenNameDOLLAR) {
3095                                 getNextToken();
3096                         }
3097                         reference_variable(lefthandside, false);
3098                 }
3099                 return ref;
3100         }
3101
3102         // private void simple_indirect_reference() {
3103         // // simple_indirect_reference:
3104         // // '$'
3105         // //| simple_indirect_reference '$'
3106         // }
3107         private Expression reference_variable(boolean lefthandside, boolean ignoreVar) {
3108                 // reference_variable:
3109                 // reference_variable '[' dim_offset ']'
3110                 // | reference_variable '{' expr '}'
3111                 // | compound_variable
3112                 Expression ref = null;
3113                 if (Scanner.TRACE) {
3114                         System.out.println("TRACE: reference_variable()");
3115                 }
3116                 ref = compound_variable(lefthandside, ignoreVar);
3117                 while (true) {
3118                         if (token == TokenNameLBRACE) {
3119                                 ref = null;
3120                                 getNextToken();
3121                                 expr();
3122                                 if (token != TokenNameRBRACE) {
3123                                         throwSyntaxError("'}' expected in reference variable.");
3124                                 }
3125                                 getNextToken();
3126                         } else if (token == TokenNameLBRACKET) {
3127                                 // To remove "ref = null;" here, is probably better than the patch commented in #1368081 - axelcl
3128                                 getNextToken();
3129                                 if (token != TokenNameRBRACKET) {
3130                                         expr();
3131                                         // dim_offset();
3132                                         if (token != TokenNameRBRACKET) {
3133                                                 throwSyntaxError("']' expected in reference variable.");
3134                                         }
3135                                 }
3136                                 getNextToken();
3137                         } else {
3138                                 break;
3139                         }
3140                 }
3141                 return ref;
3142         }
3143
3144         private Expression compound_variable(boolean lefthandside, boolean ignoreVar) {
3145                 // compound_variable:
3146                 // T_VARIABLE
3147                 // | '$' '{' expr '}'
3148                 if (Scanner.TRACE) {
3149                         System.out.println("TRACE: compound_variable()");
3150                 }
3151                 if (token == TokenNameVariable) {
3152                         if (!lefthandside) {
3153                                 if (!containsVariableSet()) {
3154                                         // reportSyntaxError("The local variable " + new
3155                                         // String(scanner.getCurrentIdentifierSource())
3156                                         // + " may not have been initialized");
3157                                         problemReporter.uninitializedLocalVariable(new String(scanner.getCurrentIdentifierSource()), scanner
3158                                                         .getCurrentTokenStartPosition(), scanner.getCurrentTokenEndPosition(), referenceContext,
3159                                                         compilationUnit.compilationResult);
3160                                 }
3161                         } else {
3162                                 if (!ignoreVar) {
3163                                         addVariableSet();
3164                                 }
3165                         }
3166                         FieldReference ref = new FieldReference(scanner.getCurrentIdentifierSource(), scanner.getCurrentTokenStartPosition());
3167                         getNextToken();
3168                         return ref;
3169                 } else {
3170                         // because of simple_indirect_reference
3171                         while (token == TokenNameDOLLAR) {
3172                                 getNextToken();
3173                         }
3174                         if (token != TokenNameLBRACE) {
3175                                 reportSyntaxError("'{' expected after compound variable token '$'.");
3176                                 return null;
3177                         }
3178                         getNextToken();
3179                         expr();
3180                         if (token != TokenNameRBRACE) {
3181                                 throwSyntaxError("'}' expected after compound variable token '$'.");
3182                         }
3183                         getNextToken();
3184                 }
3185                 return null;
3186         } // private void dim_offset() { // // dim_offset: // // /* empty */
3187
3188         // // | expr
3189         // expr();
3190         // }
3191         private void object_property() {
3192                 // object_property:
3193                 // object_dim_list
3194                 // | variable_without_objects
3195                 if (Scanner.TRACE) {
3196                         System.out.println("TRACE: object_property()");
3197                 }
3198                 if (token == TokenNameVariable || token == TokenNameDOLLAR) {
3199                         variable_without_objects(false, false);
3200                 } else {
3201                         object_dim_list();
3202                 }
3203         }
3204
3205         private void object_dim_list() {
3206                 // object_dim_list:
3207                 // object_dim_list '[' dim_offset ']'
3208                 // | object_dim_list '{' expr '}'
3209                 // | variable_name
3210                 if (Scanner.TRACE) {
3211                         System.out.println("TRACE: object_dim_list()");
3212                 }
3213                 variable_name();
3214                 while (true) {
3215                         if (token == TokenNameLBRACE) {
3216                                 getNextToken();
3217                                 expr();
3218                                 if (token != TokenNameRBRACE) {
3219                                         throwSyntaxError("'}' expected in object_dim_list.");
3220                                 }
3221                                 getNextToken();
3222                         } else if (token == TokenNameLBRACKET) {
3223                                 getNextToken();
3224                                 if (token == TokenNameRBRACKET) {
3225                                         getNextToken();
3226                                         continue;
3227                                 }
3228                                 expr();
3229                                 if (token != TokenNameRBRACKET) {
3230                                         throwSyntaxError("']' expected in object_dim_list.");
3231                                 }
3232                                 getNextToken();
3233                         } else {
3234                                 break;
3235                         }
3236                 }
3237         }
3238
3239         private void variable_name() {
3240                 // variable_name:
3241                 // T_STRING
3242                 // | '{' expr '}'
3243                 if (Scanner.TRACE) {
3244                         System.out.println("TRACE: variable_name()");
3245                 }
3246                 if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
3247                         if (token > TokenNameKEYWORD) {
3248                                 // TODO show a warning "Keyword used as variable" ?
3249                         }
3250                         getNextToken();
3251                 } else {
3252                         if (token != TokenNameLBRACE) {
3253                                 throwSyntaxError("'{' expected in variable name.");
3254                         }
3255                         getNextToken();
3256                         expr();
3257                         if (token != TokenNameRBRACE) {
3258                                 throwSyntaxError("'}' expected in variable name.");
3259                         }
3260                         getNextToken();
3261                 }
3262         }
3263
3264         private void r_variable() {
3265                 variable(false, false);
3266         }
3267
3268         private void w_variable(boolean lefthandside) {
3269                 variable(lefthandside, false);
3270         }
3271
3272         private void rw_variable() {
3273                 variable(false, false);
3274         }
3275
3276         private Expression variable(boolean lefthandside, boolean ignoreVar) {
3277                 // variable:
3278                 // base_variable_with_function_calls T_OBJECT_OPERATOR
3279                 // object_property method_or_not variable_properties
3280                 // | base_variable_with_function_calls
3281                 Expression ref = base_variable_with_function_calls(lefthandside, ignoreVar);
3282                 if (token == TokenNameMINUS_GREATER) {
3283                         ref = null;
3284                         getNextToken();
3285                         object_property();
3286                         method_or_not();
3287                         variable_properties();
3288                 }
3289                 return ref;
3290         }
3291
3292         private void variable_properties() {
3293                 // variable_properties:
3294                 // variable_properties variable_property
3295                 // | /* empty */
3296                 while (token == TokenNameMINUS_GREATER) {
3297                         variable_property();
3298                 }
3299         }
3300
3301         private void variable_property() {
3302                 // variable_property:
3303                 // T_OBJECT_OPERATOR object_property method_or_not
3304                 if (Scanner.TRACE) {
3305                         System.out.println("TRACE: variable_property()");
3306                 }
3307                 if (token == TokenNameMINUS_GREATER) {
3308                         getNextToken();
3309                         object_property();
3310                         method_or_not();
3311                 } else {
3312                         throwSyntaxError("'->' expected in variable_property.");
3313                 }
3314         }
3315
3316         private Expression identifier(boolean lefthandside, boolean ignoreVar) {
3317                 // variable:
3318                 // base_variable_with_function_calls T_OBJECT_OPERATOR
3319                 // object_property method_or_not variable_properties
3320                 // | base_variable_with_function_calls
3321
3322                 // Expression ref = function_call(lefthandside, ignoreVar);
3323
3324                 // function_call:
3325                 // T_STRING '(' function_call_parameter_list ')'
3326                 // | class_constant '(' function_call_parameter_list ')'
3327                 // | static_member '(' function_call_parameter_list ')'
3328                 // | variable_without_objects '(' function_call_parameter_list ')'
3329                 char[] defineName = null;
3330                 char[] ident = null;
3331                 int startPos = 0;
3332                 int endPos = 0;
3333                 Expression ref = null;
3334                 if (Scanner.TRACE) {
3335                         System.out.println("TRACE: function_call()");
3336                 }
3337                 if (token == TokenNameIdentifier) {
3338                         ident = scanner.getCurrentIdentifierSource();
3339                         defineName = ident;
3340                         startPos = scanner.getCurrentTokenStartPosition();
3341                         endPos = scanner.getCurrentTokenEndPosition();
3342                         getNextToken();
3343
3344                         if (token == TokenNameEQUAL || token == TokenNamePLUS_EQUAL || token == TokenNameMINUS_EQUAL
3345                                         || token == TokenNameMULTIPLY_EQUAL || token == TokenNameDIVIDE_EQUAL || token == TokenNameDOT_EQUAL
3346                                         || token == TokenNameREMAINDER_EQUAL || token == TokenNameAND_EQUAL || token == TokenNameOR_EQUAL
3347                                         || token == TokenNameXOR_EQUAL || token == TokenNameRIGHT_SHIFT_EQUAL || token == TokenNameLEFT_SHIFT_EQUAL) {
3348                                 String error = "Assignment operator '" + scanner.toStringAction(token) + "' not allowed after identifier '"
3349                                                 + new String(ident) + "' (use 'define(...)' to define constants).";
3350                                 reportSyntaxError(error);
3351                         }
3352
3353                         switch (token) {
3354                         case TokenNamePAAMAYIM_NEKUDOTAYIM:
3355                                 // static member:
3356                                 defineName = null;
3357                                 getNextToken();
3358                                 if (token == TokenNameIdentifier) {
3359                                         // class _constant
3360                                         getNextToken();
3361                                 } else {
3362                                         // static member:
3363                                         variable_without_objects(true, false);
3364                                 }
3365                                 break;
3366                         }
3367                 } else {
3368                         ref = variable_without_objects(lefthandside, ignoreVar);
3369                 }
3370                 if (token != TokenNameLPAREN) {
3371                         if (defineName != null) {
3372                                 // does this identifier contain only uppercase characters?
3373                                 if (defineName.length == 3) {
3374                                         if (defineName[0] == 'd' && defineName[1] == 'i' && defineName[2] == 'e') {
3375                                                 defineName = null;
3376                                         }
3377                                 } else if (defineName.length == 4) {
3378                                         if (defineName[0] == 't' && defineName[1] == 'r' && defineName[2] == 'u' && defineName[3] == 'e') {
3379                                                 defineName = null;
3380                                         } else if (defineName[0] == 'n' && defineName[1] == 'u' && defineName[2] == 'l' && defineName[3] == 'l') {
3381                                                 defineName = null;
3382                                         }
3383                                 } else if (defineName.length == 5) {
3384                                         if (defineName[0] == 'f' && defineName[1] == 'a' && defineName[2] == 'l' && defineName[3] == 's' && defineName[4] == 'e') {
3385                                                 defineName = null;
3386                                         }
3387                                 }
3388                                 if (defineName != null) {
3389                                         for (int i = 0; i < defineName.length; i++) {
3390                                                 if (Character.isLowerCase(defineName[i])) {
3391                                                         problemReporter.phpUppercaseIdentifierWarning(startPos, endPos, referenceContext, compilationUnit.compilationResult);
3392                                                         break;
3393                                                 }
3394                                         }
3395                                 }
3396                         }
3397                         // TODO is this ok ?
3398                         // return ref;
3399                         // throwSyntaxError("'(' expected in function call.");
3400                 } else {
3401                         getNextToken();
3402
3403                         if (token == TokenNameRPAREN) {
3404                                 getNextToken();
3405                                 ref = null;
3406                         } else {
3407                                 non_empty_function_call_parameter_list();
3408                                 if (token != TokenNameRPAREN) {
3409                                         String functionName;
3410                                         if (ident == null) {
3411                                                 functionName = new String(" ");
3412                                         } else {
3413                                                 functionName = new String(ident);
3414                                         }
3415                                         throwSyntaxError("')' expected in function call (" + functionName + ").");
3416                                 }
3417                                 getNextToken();
3418                         }
3419                 }
3420                 if (token == TokenNameMINUS_GREATER) {
3421                         ref = null;
3422                         getNextToken();
3423                         object_property();
3424                         method_or_not();
3425                         variable_properties();
3426                 }
3427                 return ref;
3428         }
3429
3430         private void method_or_not() {
3431                 // method_or_not:
3432                 // '(' function_call_parameter_list ')'
3433                 // | /* empty */
3434                 if (Scanner.TRACE) {
3435                         System.out.println("TRACE: method_or_not()");
3436                 }
3437                 if (token == TokenNameLPAREN) {
3438                         getNextToken();
3439                         if (token == TokenNameRPAREN) {
3440                                 getNextToken();
3441                                 return;
3442                         }
3443                         non_empty_function_call_parameter_list();
3444                         if (token != TokenNameRPAREN) {
3445                                 throwSyntaxError("')' expected in method_or_not.");
3446                         }
3447                         getNextToken();
3448                 }
3449         }
3450
3451         private void exit_expr() {
3452                 // /* empty */
3453                 // | '(' ')'
3454                 // | '(' expr ')'
3455                 if (token != TokenNameLPAREN) {
3456                         return;
3457                 }
3458                 getNextToken();
3459                 if (token == TokenNameRPAREN) {
3460                         getNextToken();
3461                         return;
3462                 }
3463                 expr();
3464                 if (token != TokenNameRPAREN) {
3465                         throwSyntaxError("')' expected after keyword 'exit'");
3466                 }
3467                 getNextToken();
3468         }
3469
3470         // private void encaps_list() {
3471         // // encaps_list encaps_var
3472         // // | encaps_list T_STRING
3473         // // | encaps_list T_NUM_STRING
3474         // // | encaps_list T_ENCAPSED_AND_WHITESPACE
3475         // // | encaps_list T_CHARACTER
3476         // // | encaps_list T_BAD_CHARACTER
3477         // // | encaps_list '['
3478         // // | encaps_list ']'
3479         // // | encaps_list '{'
3480         // // | encaps_list '}'
3481         // // | encaps_list T_OBJECT_OPERATOR
3482         // // | /* empty */
3483         // while (true) {
3484         // switch (token) {
3485         // case TokenNameSTRING:
3486         // getNextToken();
3487         // break;
3488         // case TokenNameLBRACE:
3489         // // scanner.encapsedStringStack.pop();
3490         // getNextToken();
3491         // break;
3492         // case TokenNameRBRACE:
3493         // // scanner.encapsedStringStack.pop();
3494         // getNextToken();
3495         // break;
3496         // case TokenNameLBRACKET:
3497         // // scanner.encapsedStringStack.pop();
3498         // getNextToken();
3499         // break;
3500         // case TokenNameRBRACKET:
3501         // // scanner.encapsedStringStack.pop();
3502         // getNextToken();
3503         // break;
3504         // case TokenNameMINUS_GREATER:
3505         // // scanner.encapsedStringStack.pop();
3506         // getNextToken();
3507         // break;
3508         // case TokenNameVariable:
3509         // case TokenNameDOLLAR_LBRACE:
3510         // case TokenNameLBRACE_DOLLAR:
3511         // encaps_var();
3512         // break;
3513         // default:
3514         // char encapsedChar = ((Character)
3515         // scanner.encapsedStringStack.peek()).charValue();
3516         // if (encapsedChar == '$') {
3517         // scanner.encapsedStringStack.pop();
3518         // encapsedChar = ((Character)
3519         // scanner.encapsedStringStack.peek()).charValue();
3520         // switch (encapsedChar) {
3521         // case '`':
3522         // if (token == TokenNameEncapsedString0) {
3523         // return;
3524         // }
3525         // token = TokenNameSTRING;
3526         // continue;
3527         // case '\'':
3528         // if (token == TokenNameEncapsedString1) {
3529         // return;
3530         // }
3531         // token = TokenNameSTRING;
3532         // continue;
3533         // case '"':
3534         // if (token == TokenNameEncapsedString2) {
3535         // return;
3536         // }
3537         // token = TokenNameSTRING;
3538         // continue;
3539         // }
3540         // }
3541         // return;
3542         // }
3543         // }
3544         // }
3545
3546         // private void encaps_var() {
3547         // // T_VARIABLE
3548         // // | T_VARIABLE '[' encaps_var_offset ']'
3549         // // | T_VARIABLE T_OBJECT_OPERATOR T_STRING
3550         // // | T_DOLLAR_OPEN_CURLY_BRACES expr '}'
3551         // // | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
3552         // // | T_CURLY_OPEN variable '}'
3553         // switch (token) {
3554         // case TokenNameVariable:
3555         // getNextToken();
3556         // if (token == TokenNameLBRACKET) {
3557         // getNextToken();
3558         // expr(); //encaps_var_offset();
3559         // if (token != TokenNameRBRACKET) {
3560         // throwSyntaxError("']' expected after variable.");
3561         // }
3562         // // scanner.encapsedStringStack.pop();
3563         // getNextToken();
3564         // // }
3565         // } else if (token == TokenNameMINUS_GREATER) {
3566         // getNextToken();
3567         // if (token != TokenNameIdentifier) {
3568         // throwSyntaxError("Identifier expected after '->'.");
3569         // }
3570         // // scanner.encapsedStringStack.pop();
3571         // getNextToken();
3572         // }
3573         // // else {
3574         // // // scanner.encapsedStringStack.pop();
3575         // // int tempToken = TokenNameSTRING;
3576         // // if (!scanner.encapsedStringStack.isEmpty()
3577         // // && (token == TokenNameEncapsedString0
3578         // // || token == TokenNameEncapsedString1
3579         // // || token == TokenNameEncapsedString2 || token ==
3580         // // TokenNameERROR)) {
3581         // // char encapsedChar = ((Character)
3582         // // scanner.encapsedStringStack.peek())
3583         // // .charValue();
3584         // // switch (token) {
3585         // // case TokenNameEncapsedString0 :
3586         // // if (encapsedChar == '`') {
3587         // // tempToken = TokenNameEncapsedString0;
3588         // // }
3589         // // break;
3590         // // case TokenNameEncapsedString1 :
3591         // // if (encapsedChar == '\'') {
3592         // // tempToken = TokenNameEncapsedString1;
3593         // // }
3594         // // break;
3595         // // case TokenNameEncapsedString2 :
3596         // // if (encapsedChar == '"') {
3597         // // tempToken = TokenNameEncapsedString2;
3598         // // }
3599         // // break;
3600         // // case TokenNameERROR :
3601         // // if (scanner.source[scanner.currentPosition - 1] == '\\') {
3602         // // scanner.currentPosition--;
3603         // // getNextToken();
3604         // // }
3605         // // break;
3606         // // }
3607         // // }
3608         // // token = tempToken;
3609         // // }
3610         // break;
3611         // case TokenNameDOLLAR_LBRACE:
3612         // getNextToken();
3613         // if (token == TokenNameDOLLAR_LBRACE) {
3614         // encaps_var();
3615         // } else if (token == TokenNameIdentifier) {
3616         // getNextToken();
3617         // if (token == TokenNameLBRACKET) {
3618         // getNextToken();
3619         // // if (token == TokenNameRBRACKET) {
3620         // // getNextToken();
3621         // // } else {
3622         // expr();
3623         // if (token != TokenNameRBRACKET) {
3624         // throwSyntaxError("']' expected after '${'.");
3625         // }
3626         // getNextToken();
3627         // // }
3628         // }
3629         // } else {
3630         // expr();
3631         // }
3632         // if (token != TokenNameRBRACE) {
3633         // throwSyntaxError("'}' expected.");
3634         // }
3635         // getNextToken();
3636         // break;
3637         // case TokenNameLBRACE_DOLLAR:
3638         // getNextToken();
3639         // if (token == TokenNameLBRACE_DOLLAR) {
3640         // encaps_var();
3641         // } else if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
3642         // getNextToken();
3643         // if (token == TokenNameLBRACKET) {
3644         // getNextToken();
3645         // // if (token == TokenNameRBRACKET) {
3646         // // getNextToken();
3647         // // } else {
3648         // expr();
3649         // if (token != TokenNameRBRACKET) {
3650         // throwSyntaxError("']' expected.");
3651         // }
3652         // getNextToken();
3653         // // }
3654         // } else if (token == TokenNameMINUS_GREATER) {
3655         // getNextToken();
3656         // if (token != TokenNameIdentifier && token != TokenNameVariable) {
3657         // throwSyntaxError("String or Variable token expected.");
3658         // }
3659         // getNextToken();
3660         // if (token == TokenNameLBRACKET) {
3661         // getNextToken();
3662         // // if (token == TokenNameRBRACKET) {
3663         // // getNextToken();
3664         // // } else {
3665         // expr();
3666         // if (token != TokenNameRBRACKET) {
3667         // throwSyntaxError("']' expected after '${'.");
3668         // }
3669         // getNextToken();
3670         // // }
3671         // }
3672         // }
3673         // // if (token != TokenNameRBRACE) {
3674         // // throwSyntaxError("'}' expected after '{$'.");
3675         // // }
3676         // // // scanner.encapsedStringStack.pop();
3677         // // getNextToken();
3678         // } else {
3679         // expr();
3680         // if (token != TokenNameRBRACE) {
3681         // throwSyntaxError("'}' expected.");
3682         // }
3683         // // scanner.encapsedStringStack.pop();
3684         // getNextToken();
3685         // }
3686         // break;
3687         // }
3688         // }
3689
3690         // private void encaps_var_offset() {
3691         // // T_STRING
3692         // // | T_NUM_STRING
3693         // // | T_VARIABLE
3694         // switch (token) {
3695         // case TokenNameSTRING:
3696         // getNextToken();
3697         // break;
3698         // case TokenNameIntegerLiteral:
3699         // getNextToken();
3700         // break;
3701         // case TokenNameVariable:
3702         // getNextToken();
3703         // break;
3704         // case TokenNameIdentifier:
3705         // getNextToken();
3706         // break;
3707         // default:
3708         // throwSyntaxError("Variable or String token expected.");
3709         // break;
3710         // }
3711         // }
3712
3713         private void internal_functions_in_yacc() {
3714                 // int start = 0;
3715                 switch (token) {
3716                 // case TokenNameisset:
3717                 // // T_ISSET '(' isset_variables ')'
3718                 // getNextToken();
3719                 // if (token != TokenNameLPAREN) {
3720                 // throwSyntaxError("'(' expected after keyword 'isset'");
3721                 // }
3722                 // getNextToken();
3723                 // isset_variables();
3724                 // if (token != TokenNameRPAREN) {
3725                 // throwSyntaxError("')' expected after keyword 'isset'");
3726                 // }
3727                 // getNextToken();
3728                 // break;
3729                 // case TokenNameempty:
3730                 // // T_EMPTY '(' variable ')'
3731                 // getNextToken();
3732                 // if (token != TokenNameLPAREN) {
3733                 // throwSyntaxError("'(' expected after keyword 'empty'");
3734                 // }
3735                 // getNextToken();
3736                 // variable(false);
3737                 // if (token != TokenNameRPAREN) {
3738                 // throwSyntaxError("')' expected after keyword 'empty'");
3739                 // }
3740                 // getNextToken();
3741                 // break;
3742                 case TokenNameinclude:
3743                         // T_INCLUDE expr
3744                         checkFileName(token);
3745                         break;
3746                 case TokenNameinclude_once:
3747                         // T_INCLUDE_ONCE expr
3748                         checkFileName(token);
3749                         break;
3750                 case TokenNameeval:
3751                         // T_EVAL '(' expr ')'
3752                         getNextToken();
3753                         if (token != TokenNameLPAREN) {
3754                                 throwSyntaxError("'(' expected after keyword 'eval'");
3755                         }
3756                         getNextToken();
3757                         expr();
3758                         if (token != TokenNameRPAREN) {
3759                                 throwSyntaxError("')' expected after keyword 'eval'");
3760                         }
3761                         getNextToken();
3762                         break;
3763                 case TokenNamerequire:
3764                         // T_REQUIRE expr
3765                         checkFileName(token);
3766                         break;
3767                 case TokenNamerequire_once:
3768                         // T_REQUIRE_ONCE expr
3769                         checkFileName(token);
3770                         break;
3771                 }
3772         }
3773
3774         /**
3775          * Parse and check the include file name
3776          *
3777          * @param includeToken
3778          */
3779         private void checkFileName(int includeToken) {
3780                 // <include-token> expr
3781                 int start = scanner.getCurrentTokenStartPosition();
3782                 boolean hasLPAREN = false;
3783                 getNextToken();
3784                 if (token == TokenNameLPAREN) {
3785                         hasLPAREN = true;
3786                         getNextToken();
3787                 }
3788                 Expression expression = expr();
3789                 if (hasLPAREN) {
3790                         if (token == TokenNameRPAREN) {
3791                                 getNextToken();
3792                         } else {
3793                                 throwSyntaxError("')' expected for keyword '" + scanner.toStringAction(includeToken) + "'");
3794                         }
3795                 }
3796                 char[] currTokenSource = scanner.getCurrentTokenSource(start);
3797                 IFile file = null;
3798                 if (scanner.compilationUnit != null) {
3799                         IResource resource = scanner.compilationUnit.getResource();
3800                         if (resource != null && resource instanceof IFile) {
3801                                 file = (IFile) resource;
3802                         }
3803                 }
3804                 char[][] tokens;
3805                 tokens = new char[1][];
3806                 tokens[0] = currTokenSource;
3807
3808                 ImportReference impt = new ImportReference(tokens, currTokenSource, start, scanner.getCurrentTokenEndPosition(), false);
3809                 impt.declarationSourceEnd = impt.sourceEnd;
3810                 impt.declarationEnd = impt.declarationSourceEnd;
3811                 // endPosition is just before the ;
3812                 impt.declarationSourceStart = start;
3813                 includesList.add(impt);
3814
3815                 if (expression instanceof StringLiteral) {
3816                         StringLiteral literal = (StringLiteral) expression;
3817                         char[] includeName = literal.source();
3818                         if (includeName.length == 0) {
3819                                 reportSyntaxError("Empty filename after keyword '" + scanner.toStringAction(includeToken) + "'", literal.sourceStart,
3820                                                 literal.sourceStart + 1);
3821                         }
3822                         String includeNameString = new String(includeName);
3823                         if (literal instanceof StringLiteralDQ) {
3824                                 if (includeNameString.indexOf('$') >= 0) {
3825                                         // assuming that the filename contains a variable => no filename check
3826                                         return;
3827                                 }
3828                         }
3829                         if (includeNameString.startsWith("http://")) {
3830                                 // assuming external include location
3831                                 return;
3832                         }
3833                         if (file != null) {
3834                                 // check the filename:
3835                                 // System.out.println(new String(compilationUnit.getFileName())+" - "+
3836                                 // expression.toStringExpression());
3837                                 IProject project = file.getProject();
3838                                 if (project != null) {
3839                                         IPath path = PHPFileUtil.determineFilePath(includeNameString, file, project);
3840
3841                                         if (path == null) {
3842                                                 // SyntaxError: "File: << >> doesn't exist in project."
3843                                                 String[] args = { expression.toStringExpression(), project.getLocation().toString() };
3844                                                 problemReporter.phpIncludeNotExistWarning(args, literal.sourceStart, literal.sourceEnd, referenceContext,
3845                                                                 compilationUnit.compilationResult);
3846                                         } else {
3847                                                 try {
3848                                                         String filePath = path.toString();
3849                                                         String ext = file.getRawLocation().getFileExtension();
3850                                                         int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
3851
3852                                                         impt.tokens = CharOperation.splitOn('/', filePath.toCharArray(), 0, filePath.length() - fileExtensionLength);
3853                                                         impt.setFile(PHPFileUtil.createFile(path, project));
3854                                                 } catch (Exception e) {
3855                                                         // the file is outside of the workspace
3856                                                 }
3857                                         }
3858                                 }
3859                         }
3860                 }
3861         }
3862
3863         private void isset_variables() {
3864                 // variable
3865                 // | isset_variables ','
3866                 if (token == TokenNameRPAREN) {
3867                         throwSyntaxError("Variable expected after keyword 'isset'");
3868                 }
3869                 while (true) {
3870                         variable(true, false);
3871                         if (token == TokenNameCOMMA) {
3872                                 getNextToken();
3873                         } else {
3874                                 break;
3875                         }
3876                 }
3877         }
3878
3879         private boolean common_scalar() {
3880                 // common_scalar:
3881                 // T_LNUMBER
3882                 // | T_DNUMBER
3883                 // | T_CONSTANT_ENCAPSED_STRING
3884                 // | T_LINE
3885                 // | T_FILE
3886                 // | T_CLASS_C
3887                 // | T_METHOD_C
3888                 // | T_FUNC_C
3889                 switch (token) {
3890                 case TokenNameIntegerLiteral:
3891                         getNextToken();
3892                         return true;
3893                 case TokenNameDoubleLiteral:
3894                         getNextToken();
3895                         return true;
3896                 case TokenNameStringDoubleQuote:
3897                         getNextToken();
3898                         return true;
3899                 case TokenNameStringSingleQuote:
3900                         getNextToken();
3901                         return true;
3902                 case TokenNameStringInterpolated:
3903                         getNextToken();
3904                         return true;
3905                 case TokenNameFILE:
3906                         getNextToken();
3907                         return true;
3908                 case TokenNameLINE:
3909                         getNextToken();
3910                         return true;
3911                 case TokenNameCLASS_C:
3912                         getNextToken();
3913                         return true;
3914                 case TokenNameMETHOD_C:
3915                         getNextToken();
3916                         return true;
3917                 case TokenNameFUNC_C:
3918                         getNextToken();
3919                         return true;
3920                 }
3921                 return false;
3922         }
3923
3924         private void scalar() {
3925                 // scalar:
3926                 // T_STRING
3927                 // | T_STRING_VARNAME
3928                 // | class_constant
3929                 // | common_scalar
3930                 // | '"' encaps_list '"'
3931                 // | '\'' encaps_list '\''
3932                 // | T_START_HEREDOC encaps_list T_END_HEREDOC
3933                 throwSyntaxError("Not yet implemented (scalar).");
3934         }
3935
3936         private void static_scalar() {
3937                 // static_scalar: /* compile-time evaluated scalars */
3938                 // common_scalar
3939                 // | T_STRING
3940                 // | '+' static_scalar
3941                 // | '-' static_scalar
3942                 // | T_ARRAY '(' static_array_pair_list ')'
3943                 // | static_class_constant
3944                 if (common_scalar()) {
3945                         return;
3946                 }
3947                 switch (token) {
3948                 case TokenNameIdentifier:
3949                         getNextToken();
3950                         // static_class_constant:
3951                         // T_STRING T_PAAMAYIM_NEKUDOTAYIM T_STRING
3952                         if (token == TokenNamePAAMAYIM_NEKUDOTAYIM) {
3953                                 getNextToken();
3954                                 if (token == TokenNameIdentifier) {
3955                                         getNextToken();
3956                                 } else {
3957                                         throwSyntaxError("Identifier expected after '::' operator.");
3958                                 }
3959                         }
3960                         break;
3961                 case TokenNameEncapsedString0:
3962                         try {
3963                                 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3964                                 while (scanner.currentCharacter != '`') {
3965                                         if (scanner.currentCharacter == '\\') {
3966                                                 scanner.currentPosition++;
3967                                         }
3968                                         scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3969                                 }
3970                                 getNextToken();
3971                         } catch (IndexOutOfBoundsException e) {
3972                                 throwSyntaxError("'`' expected at end of static string.");
3973                         }
3974                         break;
3975                 // case TokenNameEncapsedString1:
3976                 // try {
3977                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3978                 // while (scanner.currentCharacter != '\'') {
3979                 // if (scanner.currentCharacter == '\\') {
3980                 // scanner.currentPosition++;
3981                 // }
3982                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3983                 // }
3984                 // getNextToken();
3985                 // } catch (IndexOutOfBoundsException e) {
3986                 // throwSyntaxError("'\'' expected at end of static string.");
3987                 // }
3988                 // break;
3989                 // case TokenNameEncapsedString2:
3990                 // try {
3991                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3992                 // while (scanner.currentCharacter != '"') {
3993                 // if (scanner.currentCharacter == '\\') {
3994                 // scanner.currentPosition++;
3995                 // }
3996                 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
3997                 // }
3998                 // getNextToken();
3999                 // } catch (IndexOutOfBoundsException e) {
4000                 // throwSyntaxError("'\"' expected at end of static string.");
4001                 // }
4002                 // break;
4003                 case TokenNameStringSingleQuote:
4004                         getNextToken();
4005                         break;
4006                 case TokenNameStringDoubleQuote:
4007                         getNextToken();
4008                         break;
4009                 case TokenNamePLUS:
4010                         getNextToken();
4011                         static_scalar();
4012                         break;
4013                 case TokenNameMINUS:
4014                         getNextToken();
4015                         static_scalar();
4016                         break;
4017                 case TokenNamearray:
4018                         getNextToken();
4019                         if (token != TokenNameLPAREN) {
4020                                 throwSyntaxError("'(' expected after keyword 'array'");
4021                         }
4022                         getNextToken();
4023                         if (token == TokenNameRPAREN) {
4024                                 getNextToken();
4025                                 break;
4026                         }
4027                         non_empty_static_array_pair_list();
4028                         if (token != TokenNameRPAREN) {
4029                                 throwSyntaxError("')' or ',' expected after keyword 'array'");
4030                         }
4031                         getNextToken();
4032                         break;
4033                 // case TokenNamenull :
4034                 // getNextToken();
4035                 // break;
4036                 // case TokenNamefalse :
4037                 // getNextToken();
4038                 // break;
4039                 // case TokenNametrue :
4040                 // getNextToken();
4041                 // break;
4042                 default:
4043                         throwSyntaxError("Static scalar/constant expected.");
4044                 }
4045         }
4046
4047         private void non_empty_static_array_pair_list() {
4048                 // non_empty_static_array_pair_list:
4049                 // non_empty_static_array_pair_list ',' static_scalar T_DOUBLE_ARROW
4050                 // static_scalar
4051                 // | non_empty_static_array_pair_list ',' static_scalar
4052                 // | static_scalar T_DOUBLE_ARROW static_scalar
4053                 // | static_scalar
4054                 while (true) {
4055                         static_scalar();
4056                         if (token == TokenNameEQUAL_GREATER) {
4057                                 getNextToken();
4058                                 static_scalar();
4059                         }
4060                         if (token != TokenNameCOMMA) {
4061                                 break;
4062                         }
4063                         getNextToken();
4064                         if (token == TokenNameRPAREN) {
4065                                 break;
4066                         }
4067                 }
4068         }
4069
4070         // public void reportSyntaxError() { //int act, int currentKind, int
4071         // // stateStackTop) {
4072         // /* remember current scanner position */
4073         // int startPos = scanner.startPosition;
4074         // int currentPos = scanner.currentPosition;
4075         //
4076         // this.checkAndReportBracketAnomalies(problemReporter());
4077         // /* reset scanner where it was */
4078         // scanner.startPosition = startPos;
4079         // scanner.currentPosition = currentPos;
4080         // }
4081
4082         public static final int RoundBracket = 0;
4083
4084         public static final int SquareBracket = 1;
4085
4086         public static final int CurlyBracket = 2;
4087
4088         public static final int BracketKinds = 3;
4089
4090         protected int[] nestedMethod; // the ptr is nestedType
4091
4092         protected int nestedType, dimensions;
4093
4094         // variable set stack
4095         final static int VariableStackIncrement = 10;
4096
4097         HashMap fTypeVariables = null;
4098
4099         HashMap fMethodVariables = null;
4100
4101         ArrayList fStackUnassigned = new ArrayList();
4102
4103         // ast stack
4104         final static int AstStackIncrement = 100;
4105
4106         protected int astPtr;
4107
4108         protected ASTNode[] astStack = new ASTNode[AstStackIncrement];
4109
4110         protected int astLengthPtr;
4111
4112         protected int[] astLengthStack;
4113
4114         ASTNode[] noAstNodes = new ASTNode[AstStackIncrement];
4115
4116         public CompilationUnitDeclaration compilationUnit; /*
4117                                                                                                                                                                                                                          * the result from parse()
4118                                                                                                                                                                                                                          */
4119
4120         protected ReferenceContext referenceContext;
4121
4122         protected ProblemReporter problemReporter;
4123
4124         protected CompilerOptions options;
4125
4126         private ArrayList includesList;
4127
4128         // protected CompilationResult compilationResult;
4129         /**
4130          * Returns this parser's problem reporter initialized with its reference
4131          * context. Also it is assumed that a problem is going to be reported, so
4132          * initializes the compilation result's line positions.
4133          */
4134         public ProblemReporter problemReporter() {
4135                 if (scanner.recordLineSeparator) {
4136                         compilationUnit.compilationResult.lineSeparatorPositions = scanner.getLineEnds();
4137                 }
4138                 problemReporter.referenceContext = referenceContext;
4139                 return problemReporter;
4140         }
4141
4142         /*
4143          * Reconsider the entire source looking for inconsistencies in {} () []
4144          */
4145         // public boolean checkAndReportBracketAnomalies(ProblemReporter
4146         // problemReporter) {
4147         // scanner.wasAcr = false;
4148         // boolean anomaliesDetected = false;
4149         // try {
4150         // char[] source = scanner.source;
4151         // int[] leftCount = { 0, 0, 0 };
4152         // int[] rightCount = { 0, 0, 0 };
4153         // int[] depths = { 0, 0, 0 };
4154         // int[][] leftPositions = new int[][] { new int[10], new int[10], new int[10]
4155         // };
4156         // int[][] leftDepths = new int[][] { new int[10], new int[10], new int[10] };
4157         // int[][] rightPositions = new int[][] { new int[10], new int[10], new
4158         // int[10] };
4159         // int[][] rightDepths = new int[][] { new int[10], new int[10], new int[10]
4160         // };
4161         // scanner.currentPosition = scanner.initialPosition; //starting
4162         // // point
4163         // // (first-zero-based
4164         // // char)
4165         // while (scanner.currentPosition < scanner.eofPosition) { //loop for
4166         // // jumping
4167         // // over
4168         // // comments
4169         // try {
4170         // // ---------Consume white space and handles
4171         // // startPosition---------
4172         // boolean isWhiteSpace;
4173         // do {
4174         // scanner.startPosition = scanner.currentPosition;
4175         // // if (((scanner.currentCharacter =
4176         // // source[scanner.currentPosition++]) == '\\') &&
4177         // // (source[scanner.currentPosition] == 'u')) {
4178         // // isWhiteSpace = scanner.jumpOverUnicodeWhiteSpace();
4179         // // } else {
4180         // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
4181         // (scanner.currentCharacter == '\n'))) {
4182         // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
4183         // // only record line positions we have not
4184         // // recorded yet
4185         // scanner.pushLineSeparator();
4186         // }
4187         // }
4188         // isWhiteSpace = CharOperation.isWhitespace(scanner.currentCharacter);
4189         // // }
4190         // } while (isWhiteSpace && (scanner.currentPosition < scanner.eofPosition));
4191         // // -------consume token until } is found---------
4192         // switch (scanner.currentCharacter) {
4193         // case '{': {
4194         // int index = leftCount[CurlyBracket]++;
4195         // if (index == leftPositions[CurlyBracket].length) {
4196         // System.arraycopy(leftPositions[CurlyBracket], 0,
4197         // (leftPositions[CurlyBracket] = new int[index * 2]), 0, index);
4198         // System.arraycopy(leftDepths[CurlyBracket], 0, (leftDepths[CurlyBracket] =
4199         // new int[index * 2]), 0, index);
4200         // }
4201         // leftPositions[CurlyBracket][index] = scanner.startPosition;
4202         // leftDepths[CurlyBracket][index] = depths[CurlyBracket]++;
4203         // }
4204         // break;
4205         // case '}': {
4206         // int index = rightCount[CurlyBracket]++;
4207         // if (index == rightPositions[CurlyBracket].length) {
4208         // System.arraycopy(rightPositions[CurlyBracket], 0,
4209         // (rightPositions[CurlyBracket] = new int[index * 2]), 0, index);
4210         // System.arraycopy(rightDepths[CurlyBracket], 0, (rightDepths[CurlyBracket] =
4211         // new int[index * 2]), 0, index);
4212         // }
4213         // rightPositions[CurlyBracket][index] = scanner.startPosition;
4214         // rightDepths[CurlyBracket][index] = --depths[CurlyBracket];
4215         // }
4216         // break;
4217         // case '(': {
4218         // int index = leftCount[RoundBracket]++;
4219         // if (index == leftPositions[RoundBracket].length) {
4220         // System.arraycopy(leftPositions[RoundBracket], 0,
4221         // (leftPositions[RoundBracket] = new int[index * 2]), 0, index);
4222         // System.arraycopy(leftDepths[RoundBracket], 0, (leftDepths[RoundBracket] =
4223         // new int[index * 2]), 0, index);
4224         // }
4225         // leftPositions[RoundBracket][index] = scanner.startPosition;
4226         // leftDepths[RoundBracket][index] = depths[RoundBracket]++;
4227         // }
4228         // break;
4229         // case ')': {
4230         // int index = rightCount[RoundBracket]++;
4231         // if (index == rightPositions[RoundBracket].length) {
4232         // System.arraycopy(rightPositions[RoundBracket], 0,
4233         // (rightPositions[RoundBracket] = new int[index * 2]), 0, index);
4234         // System.arraycopy(rightDepths[RoundBracket], 0, (rightDepths[RoundBracket] =
4235         // new int[index * 2]), 0, index);
4236         // }
4237         // rightPositions[RoundBracket][index] = scanner.startPosition;
4238         // rightDepths[RoundBracket][index] = --depths[RoundBracket];
4239         // }
4240         // break;
4241         // case '[': {
4242         // int index = leftCount[SquareBracket]++;
4243         // if (index == leftPositions[SquareBracket].length) {
4244         // System.arraycopy(leftPositions[SquareBracket], 0,
4245         // (leftPositions[SquareBracket] = new int[index * 2]), 0, index);
4246         // System.arraycopy(leftDepths[SquareBracket], 0, (leftDepths[SquareBracket] =
4247         // new int[index * 2]), 0, index);
4248         // }
4249         // leftPositions[SquareBracket][index] = scanner.startPosition;
4250         // leftDepths[SquareBracket][index] = depths[SquareBracket]++;
4251         // }
4252         // break;
4253         // case ']': {
4254         // int index = rightCount[SquareBracket]++;
4255         // if (index == rightPositions[SquareBracket].length) {
4256         // System.arraycopy(rightPositions[SquareBracket], 0,
4257         // (rightPositions[SquareBracket] = new int[index * 2]), 0, index);
4258         // System.arraycopy(rightDepths[SquareBracket], 0, (rightDepths[SquareBracket]
4259         // = new int[index * 2]), 0, index);
4260         // }
4261         // rightPositions[SquareBracket][index] = scanner.startPosition;
4262         // rightDepths[SquareBracket][index] = --depths[SquareBracket];
4263         // }
4264         // break;
4265         // case '\'': {
4266         // if (scanner.getNextChar('\\')) {
4267         // scanner.scanEscapeCharacter();
4268         // } else { // consume next character
4269         // scanner.unicodeAsBackSlash = false;
4270         // // if (((scanner.currentCharacter =
4271         // // source[scanner.currentPosition++]) ==
4272         // // '\\') &&
4273         // // (source[scanner.currentPosition] ==
4274         // // 'u')) {
4275         // // scanner.getNextUnicodeChar();
4276         // // } else {
4277         // if (scanner.withoutUnicodePtr != 0) {
4278         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4279         // scanner.currentCharacter;
4280         // }
4281         // // }
4282         // }
4283         // scanner.getNextChar('\'');
4284         // break;
4285         // }
4286         // case '"':
4287         // // consume next character
4288         // scanner.unicodeAsBackSlash = false;
4289         // // if (((scanner.currentCharacter =
4290         // // source[scanner.currentPosition++]) == '\\') &&
4291         // // (source[scanner.currentPosition] == 'u')) {
4292         // // scanner.getNextUnicodeChar();
4293         // // } else {
4294         // if (scanner.withoutUnicodePtr != 0) {
4295         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4296         // scanner.currentCharacter;
4297         // }
4298         // // }
4299         // while (scanner.currentCharacter != '"') {
4300         // if (scanner.currentCharacter == '\r') {
4301         // if (source[scanner.currentPosition] == '\n')
4302         // scanner.currentPosition++;
4303         // break; // the string cannot go further that
4304         // // the line
4305         // }
4306         // if (scanner.currentCharacter == '\n') {
4307         // break; // the string cannot go further that
4308         // // the line
4309         // }
4310         // if (scanner.currentCharacter == '\\') {
4311         // scanner.scanEscapeCharacter();
4312         // }
4313         // // consume next character
4314         // scanner.unicodeAsBackSlash = false;
4315         // // if (((scanner.currentCharacter =
4316         // // source[scanner.currentPosition++]) == '\\')
4317         // // && (source[scanner.currentPosition] == 'u'))
4318         // // {
4319         // // scanner.getNextUnicodeChar();
4320         // // } else {
4321         // if (scanner.withoutUnicodePtr != 0) {
4322         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4323         // scanner.currentCharacter;
4324         // }
4325         // // }
4326         // }
4327         // break;
4328         // case '/': {
4329         // int test;
4330         // if ((test = scanner.getNextChar('/', '*')) == 0) { //line
4331         // // comment
4332         // //get the next char
4333         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4334         // '\\')
4335         // && (source[scanner.currentPosition] == 'u')) {
4336         // //-------------unicode traitement
4337         // // ------------
4338         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4339         // scanner.currentPosition++;
4340         // while (source[scanner.currentPosition] == 'u') {
4341         // scanner.currentPosition++;
4342         // }
4343         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4344         // 15 || c1 < 0
4345         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4346         // || c2 < 0
4347         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4348         // || c3 < 0
4349         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4350         // || c4 < 0) { //error
4351         // // don't
4352         // // care of the
4353         // // value
4354         // scanner.currentCharacter = 'A';
4355         // } //something different from \n and \r
4356         // else {
4357         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4358         // }
4359         // }
4360         // while (scanner.currentCharacter != '\r' && scanner.currentCharacter !=
4361         // '\n') {
4362         // //get the next char
4363         // scanner.startPosition = scanner.currentPosition;
4364         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4365         // '\\')
4366         // && (source[scanner.currentPosition] == 'u')) {
4367         // //-------------unicode traitement
4368         // // ------------
4369         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4370         // scanner.currentPosition++;
4371         // while (source[scanner.currentPosition] == 'u') {
4372         // scanner.currentPosition++;
4373         // }
4374         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4375         // 15 || c1 < 0
4376         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4377         // || c2 < 0
4378         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4379         // || c3 < 0
4380         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4381         // || c4 < 0) { //error
4382         // // don't
4383         // // care of the
4384         // // value
4385         // scanner.currentCharacter = 'A';
4386         // } //something different from \n
4387         // // and \r
4388         // else {
4389         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4390         // }
4391         // }
4392         // }
4393         // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
4394         // (scanner.currentCharacter == '\n'))) {
4395         // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
4396         // // only record line positions we
4397         // // have not recorded yet
4398         // scanner.pushLineSeparator();
4399         // if (this.scanner.taskTags != null) {
4400         // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
4401         // this.scanner
4402         // .getCurrentTokenEndPosition());
4403         // }
4404         // }
4405         // }
4406         // break;
4407         // }
4408         // if (test > 0) { //traditional and annotation
4409         // // comment
4410         // boolean star = false;
4411         // // consume next character
4412         // scanner.unicodeAsBackSlash = false;
4413         // // if (((scanner.currentCharacter =
4414         // // source[scanner.currentPosition++]) ==
4415         // // '\\') &&
4416         // // (source[scanner.currentPosition] ==
4417         // // 'u')) {
4418         // // scanner.getNextUnicodeChar();
4419         // // } else {
4420         // if (scanner.withoutUnicodePtr != 0) {
4421         // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4422         // scanner.currentCharacter;
4423         // }
4424         // // }
4425         // if (scanner.currentCharacter == '*') {
4426         // star = true;
4427         // }
4428         // //get the next char
4429         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4430         // '\\')
4431         // && (source[scanner.currentPosition] == 'u')) {
4432         // //-------------unicode traitement
4433         // // ------------
4434         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4435         // scanner.currentPosition++;
4436         // while (source[scanner.currentPosition] == 'u') {
4437         // scanner.currentPosition++;
4438         // }
4439         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4440         // 15 || c1 < 0
4441         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4442         // || c2 < 0
4443         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4444         // || c3 < 0
4445         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4446         // || c4 < 0) { //error
4447         // // don't
4448         // // care of the
4449         // // value
4450         // scanner.currentCharacter = 'A';
4451         // } //something different from * and /
4452         // else {
4453         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4454         // }
4455         // }
4456         // //loop until end of comment */
4457         // while ((scanner.currentCharacter != '/') || (!star)) {
4458         // star = scanner.currentCharacter == '*';
4459         // //get next char
4460         // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4461         // '\\')
4462         // && (source[scanner.currentPosition] == 'u')) {
4463         // //-------------unicode traitement
4464         // // ------------
4465         // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4466         // scanner.currentPosition++;
4467         // while (source[scanner.currentPosition] == 'u') {
4468         // scanner.currentPosition++;
4469         // }
4470         // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4471         // 15 || c1 < 0
4472         // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4473         // || c2 < 0
4474         // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4475         // || c3 < 0
4476         // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) > 15
4477         // || c4 < 0) { //error
4478         // // don't
4479         // // care of the
4480         // // value
4481         // scanner.currentCharacter = 'A';
4482         // } //something different from * and
4483         // // /
4484         // else {
4485         // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4486         // }
4487         // }
4488         // }
4489         // if (this.scanner.taskTags != null) {
4490         // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
4491         // this.scanner.getCurrentTokenEndPosition());
4492         // }
4493         // break;
4494         // }
4495         // break;
4496         // }
4497         // default:
4498         // if (Scanner.isPHPIdentifierStart(scanner.currentCharacter)) {
4499         // scanner.scanIdentifierOrKeyword(false);
4500         // break;
4501         // }
4502         // if (Character.isDigit(scanner.currentCharacter)) {
4503         // scanner.scanNumber(false);
4504         // break;
4505         // }
4506         // }
4507         // //-----------------end switch while
4508         // // try--------------------
4509         // } catch (IndexOutOfBoundsException e) {
4510         // break; // read until EOF
4511         // } catch (InvalidInputException e) {
4512         // return false; // no clue
4513         // }
4514         // }
4515         // if (scanner.recordLineSeparator) {
4516         // compilationUnit.compilationResult.lineSeparatorPositions =
4517         // scanner.getLineEnds();
4518         // }
4519         // // check placement anomalies against other kinds of brackets
4520         // for (int kind = 0; kind < BracketKinds; kind++) {
4521         // for (int leftIndex = leftCount[kind] - 1; leftIndex >= 0; leftIndex--) {
4522         // int start = leftPositions[kind][leftIndex]; // deepest
4523         // // first
4524         // // find matching closing bracket
4525         // int depth = leftDepths[kind][leftIndex];
4526         // int end = -1;
4527         // for (int i = 0; i < rightCount[kind]; i++) {
4528         // int pos = rightPositions[kind][i];
4529         // // want matching bracket further in source with same
4530         // // depth
4531         // if ((pos > start) && (depth == rightDepths[kind][i])) {
4532         // end = pos;
4533         // break;
4534         // }
4535         // }
4536         // if (end < 0) { // did not find a good closing match
4537         // problemReporter.unmatchedBracket(start, referenceContext,
4538         // compilationUnit.compilationResult);
4539         // return true;
4540         // }
4541         // // check if even number of opening/closing other brackets
4542         // // in between this pair of brackets
4543         // int balance = 0;
4544         // for (int otherKind = 0; (balance == 0) && (otherKind < BracketKinds);
4545         // otherKind++) {
4546         // for (int i = 0; i < leftCount[otherKind]; i++) {
4547         // int pos = leftPositions[otherKind][i];
4548         // if ((pos > start) && (pos < end))
4549         // balance++;
4550         // }
4551         // for (int i = 0; i < rightCount[otherKind]; i++) {
4552         // int pos = rightPositions[otherKind][i];
4553         // if ((pos > start) && (pos < end))
4554         // balance--;
4555         // }
4556         // if (balance != 0) {
4557         // problemReporter.unmatchedBracket(start, referenceContext,
4558         // compilationUnit.compilationResult); //bracket
4559         // // anomaly
4560         // return true;
4561         // }
4562         // }
4563         // }
4564         // // too many opening brackets ?
4565         // for (int i = rightCount[kind]; i < leftCount[kind]; i++) {
4566         // anomaliesDetected = true;
4567         // problemReporter.unmatchedBracket(leftPositions[kind][leftCount[kind] - i -
4568         // 1], referenceContext,
4569         // compilationUnit.compilationResult);
4570         // }
4571         // // too many closing brackets ?
4572         // for (int i = leftCount[kind]; i < rightCount[kind]; i++) {
4573         // anomaliesDetected = true;
4574         // problemReporter.unmatchedBracket(rightPositions[kind][i], referenceContext,
4575         // compilationUnit.compilationResult);
4576         // }
4577         // if (anomaliesDetected)
4578         // return true;
4579         // }
4580         // return anomaliesDetected;
4581         // } catch (ArrayStoreException e) { // jdk1.2.2 jit bug
4582         // return anomaliesDetected;
4583         // } catch (NullPointerException e) { // jdk1.2.2 jit bug
4584         // return anomaliesDetected;
4585         // }
4586         // }
4587         protected void pushOnAstLengthStack(int pos) {
4588                 try {
4589                         astLengthStack[++astLengthPtr] = pos;
4590                 } catch (IndexOutOfBoundsException e) {
4591                         int oldStackLength = astLengthStack.length;
4592                         int[] oldPos = astLengthStack;
4593                         astLengthStack = new int[oldStackLength + StackIncrement];
4594                         System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
4595                         astLengthStack[astLengthPtr] = pos;
4596                 }
4597         }
4598
4599         protected void pushOnAstStack(ASTNode node) {
4600                 /*
4601                  * add a new obj on top of the ast stack
4602                  */
4603                 try {
4604                         astStack[++astPtr] = node;
4605                 } catch (IndexOutOfBoundsException e) {
4606                         int oldStackLength = astStack.length;
4607                         ASTNode[] oldStack = astStack;
4608                         astStack = new ASTNode[oldStackLength + AstStackIncrement];
4609                         System.arraycopy(oldStack, 0, astStack, 0, oldStackLength);
4610                         astPtr = oldStackLength;
4611                         astStack[astPtr] = node;
4612                 }
4613                 try {
4614                         astLengthStack[++astLengthPtr] = 1;
4615                 } catch (IndexOutOfBoundsException e) {
4616                         int oldStackLength = astLengthStack.length;
4617                         int[] oldPos = astLengthStack;
4618                         astLengthStack = new int[oldStackLength + AstStackIncrement];
4619                         System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
4620                         astLengthStack[astLengthPtr] = 1;
4621                 }
4622         }
4623
4624         protected void resetModifiers() {
4625                 this.modifiers = AccDefault;
4626                 this.modifiersSourceStart = -1; // <-- see comment into
4627                 // modifiersFlag(int)
4628                 this.scanner.commentPtr = -1;
4629         }
4630
4631         protected void consumePackageDeclarationName(IFile file) {
4632                 // create a package name similar to java package names
4633                 String projectPath = ProjectPrefUtil.getDocumentRoot(file.getProject()).toString();
4634                 String filePath = file.getRawLocation().toString();
4635                 String ext = file.getRawLocation().getFileExtension();
4636                 int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
4637                 ImportReference impt;
4638                 char[][] tokens;
4639                 if (filePath.startsWith(projectPath)) {
4640                         tokens = CharOperation
4641                                         .splitOn('/', filePath.toCharArray(), projectPath.length() + 1, filePath.length() - fileExtensionLength);
4642                 } else {
4643                         String name = file.getName();
4644                         tokens = new char[1][];
4645                         tokens[0] = name.substring(0, name.length() - fileExtensionLength).toCharArray();
4646                 }
4647
4648                 this.compilationUnit.currentPackage = impt = new ImportReference(tokens, new char[0], 0, 0, true);
4649
4650                 impt.declarationSourceStart = 0;
4651                 impt.declarationSourceEnd = 0;
4652                 impt.declarationEnd = 0;
4653                 // endPosition is just before the ;
4654
4655         }
4656
4657         public final static String[] GLOBALS = { "$this", "$_COOKIE", "$_ENV", "$_FILES", "$_GET", "$GLOBALS", "$_POST", "$_REQUEST",
4658                         "$_SESSION", "$_SERVER" };
4659
4660         /**
4661          *
4662          */
4663         private void pushFunctionVariableSet() {
4664                 HashSet set = new HashSet();
4665                 if (fStackUnassigned.isEmpty()) {
4666                         for (int i = 0; i < GLOBALS.length; i++) {
4667                                 set.add(GLOBALS[i]);
4668                         }
4669                 }
4670                 fStackUnassigned.add(set);
4671         }
4672
4673         private void pushIfVariableSet() {
4674                 if (!fStackUnassigned.isEmpty()) {
4675                         HashSet set = new HashSet();
4676                         fStackUnassigned.add(set);
4677                 }
4678         }
4679
4680         private HashSet removeIfVariableSet() {
4681                 if (!fStackUnassigned.isEmpty()) {
4682                         return (HashSet) fStackUnassigned.remove(fStackUnassigned.size() - 1);
4683                 }
4684                 return null;
4685         }
4686
4687         /**
4688          * Returns the <i>set of assigned variables </i> returns null if no Set is
4689          * defined at the current scanner position
4690          */
4691         private HashSet peekVariableSet() {
4692                 if (!fStackUnassigned.isEmpty()) {
4693                         return (HashSet) fStackUnassigned.get(fStackUnassigned.size() - 1);
4694                 }
4695                 return null;
4696         }
4697
4698         /**
4699          * add the current identifier source to the <i>set of assigned variables </i>
4700          *
4701          * @param set
4702          */
4703         private void addVariableSet(HashSet set) {
4704                 if (set != null) {
4705                         set.add(new String(scanner.getCurrentTokenSource()));
4706                 }
4707         }
4708
4709         /**
4710          * add the current identifier source to the <i>set of assigned variables </i>
4711          *
4712          */
4713         private void addVariableSet() {
4714                 HashSet set = peekVariableSet();
4715                 if (set != null) {
4716                         set.add(new String(scanner.getCurrentTokenSource()));
4717                 }
4718         }
4719
4720         /**
4721          * add the current identifier source to the <i>set of assigned variables </i>
4722          *
4723          */
4724         private void addVariableSet(char[] token) {
4725                 HashSet set = peekVariableSet();
4726                 if (set != null) {
4727                         set.add(new String(token));
4728                 }
4729         }
4730
4731         /**
4732          * check if the current identifier source is in the <i>set of assigned
4733          * variables </i> Returns true, if no set is defined for the current scanner
4734          * position
4735          *
4736          */
4737         private boolean containsVariableSet() {
4738                 return containsVariableSet(scanner.getCurrentTokenSource());
4739         }
4740
4741         private boolean containsVariableSet(char[] token) {
4742
4743                 if (!fStackUnassigned.isEmpty()) {
4744                         HashSet set;
4745                         String str = new String(token);
4746                         for (int i = 0; i < fStackUnassigned.size(); i++) {
4747                                 set = (HashSet) fStackUnassigned.get(i);
4748                                 if (set.contains(str)) {
4749                                         return true;
4750                                 }
4751                         }
4752                         return false;
4753                 }
4754                 return true;
4755         }
4756 }