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