1 /***********************************************************************************************************************************
2 * Copyright (c) 2002 www.phpeclipse.de All rights reserved. This program and the accompanying material are made available under the
3 * terms of the Common Public License v1.0 which accompanies this distribution, and is available at
4 * http://www.eclipse.org/legal/cpl-v10.html
6 * Contributors: www.phpeclipse.de
7 **********************************************************************************************************************************/
8 package net.sourceforge.phpdt.internal.compiler.parser;
10 import java.util.ArrayList;
11 import java.util.HashMap;
12 import java.util.HashSet;
14 import net.sourceforge.phpdt.core.compiler.CharOperation;
15 import net.sourceforge.phpdt.core.compiler.ITerminalSymbols;
16 import net.sourceforge.phpdt.core.compiler.InvalidInputException;
17 import net.sourceforge.phpdt.internal.compiler.ast.AND_AND_Expression;
18 import net.sourceforge.phpdt.internal.compiler.ast.ASTNode;
19 import net.sourceforge.phpdt.internal.compiler.ast.AbstractMethodDeclaration;
20 import net.sourceforge.phpdt.internal.compiler.ast.BinaryExpression;
21 import net.sourceforge.phpdt.internal.compiler.ast.Block;
22 import net.sourceforge.phpdt.internal.compiler.ast.BreakStatement;
23 import net.sourceforge.phpdt.internal.compiler.ast.CompilationUnitDeclaration;
24 import net.sourceforge.phpdt.internal.compiler.ast.ConditionalExpression;
25 import net.sourceforge.phpdt.internal.compiler.ast.ContinueStatement;
26 import net.sourceforge.phpdt.internal.compiler.ast.EqualExpression;
27 import net.sourceforge.phpdt.internal.compiler.ast.Expression;
28 import net.sourceforge.phpdt.internal.compiler.ast.FieldDeclaration;
29 import net.sourceforge.phpdt.internal.compiler.ast.FieldReference;
30 import net.sourceforge.phpdt.internal.compiler.ast.IfStatement;
31 import net.sourceforge.phpdt.internal.compiler.ast.ImportReference;
32 import net.sourceforge.phpdt.internal.compiler.ast.InstanceOfExpression;
33 import net.sourceforge.phpdt.internal.compiler.ast.MethodDeclaration;
34 import net.sourceforge.phpdt.internal.compiler.ast.OR_OR_Expression;
35 import net.sourceforge.phpdt.internal.compiler.ast.OperatorIds;
36 import net.sourceforge.phpdt.internal.compiler.ast.ReturnStatement;
37 import net.sourceforge.phpdt.internal.compiler.ast.SingleTypeReference;
38 import net.sourceforge.phpdt.internal.compiler.ast.Statement;
39 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteral;
40 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralDQ;
41 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralSQ;
42 import net.sourceforge.phpdt.internal.compiler.ast.TypeDeclaration;
43 import net.sourceforge.phpdt.internal.compiler.ast.TypeReference;
44 import net.sourceforge.phpdt.internal.compiler.impl.CompilerOptions;
45 import net.sourceforge.phpdt.internal.compiler.impl.ReferenceContext;
46 import net.sourceforge.phpdt.internal.compiler.lookup.CompilerModifiers;
47 import net.sourceforge.phpdt.internal.compiler.lookup.TypeConstants;
48 import net.sourceforge.phpdt.internal.compiler.problem.ProblemReporter;
49 import net.sourceforge.phpdt.internal.compiler.problem.ProblemSeverities;
50 import net.sourceforge.phpdt.internal.compiler.util.Util;
51 import net.sourceforge.phpdt.internal.core.util.PHPFileUtil;
52 import net.sourceforge.phpeclipse.builder.IdentifierIndexManager;
53 //import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
55 import org.eclipse.core.resources.IFile;
56 import org.eclipse.core.resources.IProject;
57 import org.eclipse.core.resources.IResource;
58 import org.eclipse.core.runtime.IPath;
60 public class Parser implements ITerminalSymbols, CompilerModifiers,
61 ParserBasicInformation {
62 protected final static int StackIncrement = 255;
64 protected int stateStackTop;
66 // protected int[] stack = new int[StackIncrement];
68 public int firstToken; // handle for multiple parsing goals
70 public int lastAct; // handle for multiple parsing goals
72 // protected RecoveredElement currentElement;
74 public static boolean VERBOSE_RECOVERY = false;
76 protected boolean diet = false; // tells the scanner to jump over some
79 * the PHP token scanner
81 public Scanner scanner;
85 protected int modifiers;
87 protected int modifiersSourceStart;
89 protected Parser(ProblemReporter problemReporter) {
90 this.problemReporter = problemReporter;
91 this.options = problemReporter.options;
92 this.token = TokenNameEOF;
93 this.initializeScanner();
96 public void setFileToParse(IFile fileToParse) {
97 this.token = TokenNameEOF;
98 this.initializeScanner();
102 * ClassDeclaration Constructor.
106 * Description of Parameter
109 public Parser(IFile fileToParse) {
110 // if (keywordMap == null) {
111 // keywordMap = new HashMap();
112 // for (int i = 0; i < PHP_KEYWORS.length; i++) {
113 // keywordMap.put(PHP_KEYWORS[i], new Integer(PHP_KEYWORD_TOKEN[i]));
116 // this.currentPHPString = 0;
117 // PHPParserSuperclass.fileToParse = fileToParse;
118 // this.phpList = null;
119 this.includesList = null;
121 this.token = TokenNameEOF;
123 // this.rowCount = 1;
124 // this.columnCount = 0;
125 // this.phpEnd = false;
127 this.initializeScanner();
130 public void initializeScanner() {
131 this.scanner = new Scanner(
133 false /* whitespace */,
134 this.options.getSeverity(CompilerOptions.NonExternalizedString) != ProblemSeverities.Ignore /* nls */,
135 false, false, this.options.taskTags/* taskTags */,
136 this.options.taskPriorites/* taskPriorities */, true/* isTaskCaseSensitive */);
140 * Create marker for the parse error
142 // private void setMarker(String message, int charStart, int charEnd, int
144 // setMarker(fileToParse, message, charStart, charEnd, errorLevel);
147 * This method will throw the SyntaxError. It will add the good lines and
148 * columns to the Error
152 * @throws SyntaxError
155 private void throwSyntaxError(String error) {
156 int problemStartPosition = scanner.getCurrentTokenStartPosition();
157 int problemEndPosition = scanner.getCurrentTokenEndPosition() + 1;
158 if (scanner.source.length <= problemEndPosition
159 && problemEndPosition > 0) {
160 problemEndPosition = scanner.source.length - 1;
161 if (problemStartPosition > 0
162 && problemStartPosition >= problemEndPosition
163 && problemEndPosition > 0) {
164 problemStartPosition = problemEndPosition - 1;
167 throwSyntaxError(error, problemStartPosition, problemEndPosition);
171 * This method will throw the SyntaxError. It will add the good lines and
172 * columns to the Error
176 * @throws SyntaxError
179 // private void throwSyntaxError(String error, int startRow) {
180 // throw new SyntaxError(startRow, 0, " ", error);
182 private void throwSyntaxError(String error, int problemStartPosition,
183 int problemEndPosition) {
184 if (referenceContext != null) {
185 problemReporter.phpParsingError(new String[] { error },
186 problemStartPosition, problemEndPosition, referenceContext,
187 compilationUnit.compilationResult);
189 throw new SyntaxError(1, 0, " ", error);
192 private void reportSyntaxError(String error) {
193 int problemStartPosition = scanner.getCurrentTokenStartPosition();
194 int problemEndPosition = scanner.getCurrentTokenEndPosition();
195 reportSyntaxError(error, problemStartPosition, problemEndPosition + 1);
198 private void reportSyntaxError(String error, int problemStartPosition,
199 int problemEndPosition) {
200 if (referenceContext != null) {
201 problemReporter.phpParsingError(new String[] { error },
202 problemStartPosition, problemEndPosition, referenceContext,
203 compilationUnit.compilationResult);
207 // private void reportSyntaxWarning(String error, int problemStartPosition,
208 // int problemEndPosition) {
209 // if (referenceContext != null) {
210 // problemReporter.phpParsingWarning(new String[] { error },
211 // problemStartPosition, problemEndPosition, referenceContext,
212 // compilationUnit.compilationResult);
217 * gets the next token from input
219 private void getNextToken() {
221 token = scanner.getNextToken();
223 int currentEndPosition = scanner.getCurrentTokenEndPosition();
224 int currentStartPosition = scanner
225 .getCurrentTokenStartPosition();
226 System.out.print(currentStartPosition + ","
227 + currentEndPosition + ": ");
228 System.out.println(scanner.toStringAction(token));
230 } catch (InvalidInputException e) {
231 token = TokenNameERROR;
232 String detailedMessage = e.getMessage();
234 if (detailedMessage == Scanner.UNTERMINATED_STRING) {
235 throwSyntaxError("Unterminated string.");
236 } else if (detailedMessage == Scanner.UNTERMINATED_COMMENT) {
237 throwSyntaxError("Unterminated commment.");
243 public void init(String s) {
245 this.token = TokenNameEOF;
246 this.includesList = new ArrayList();
248 // this.rowCount = 1;
249 // this.columnCount = 0;
250 // this.phpEnd = false;
251 // this.phpMode = false;
252 /* scanner initialization */
253 scanner.setSource(s.toCharArray());
254 scanner.setPHPMode(false);
258 protected void initialize(boolean phpMode) {
259 initialize(phpMode, null);
262 protected void initialize(boolean phpMode,
263 IdentifierIndexManager indexManager) {
264 compilationUnit = null;
265 referenceContext = null;
266 this.includesList = new ArrayList();
267 // this.indexManager = indexManager;
269 this.token = TokenNameEOF;
271 // this.rowCount = 1;
272 // this.columnCount = 0;
273 // this.phpEnd = false;
274 // this.phpMode = phpMode;
275 scanner.setPHPMode(phpMode);
280 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
283 public void parse(String s) {
288 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
291 public void parse(String s, HashMap variables) {
292 fMethodVariables = variables;
293 fStackUnassigned = new ArrayList();
299 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
302 protected void parse() {
303 if (scanner.compilationUnit != null) {
304 IResource resource = scanner.compilationUnit.getResource();
305 if (resource != null && resource instanceof IFile) {
306 // set the package name
307 consumePackageDeclarationName((IFile) resource);
313 if (token != TokenNameEOF && token != TokenNameERROR) {
316 if (token != TokenNameEOF) {
317 if (token == TokenNameERROR) {
318 throwSyntaxError("Scanner error (Found unknown token: "
319 + scanner.toStringAction(token) + ")");
321 if (token == TokenNameRPAREN) {
322 throwSyntaxError("Too many closing ')'; end-of-file not reached.");
324 if (token == TokenNameRBRACE) {
325 throwSyntaxError("Too many closing '}'; end-of-file not reached.");
327 if (token == TokenNameRBRACKET) {
328 throwSyntaxError("Too many closing ']'; end-of-file not reached.");
330 if (token == TokenNameLPAREN) {
331 throwSyntaxError("Read character '('; end-of-file not reached.");
333 if (token == TokenNameLBRACE) {
334 throwSyntaxError("Read character '{'; end-of-file not reached.");
336 if (token == TokenNameLBRACKET) {
337 throwSyntaxError("Read character '['; end-of-file not reached.");
339 throwSyntaxError("End-of-file not reached.");
342 } catch (SyntaxError syntaxError) {
343 // syntaxError.printStackTrace();
352 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
355 public void parseFunction(String s, HashMap variables) {
357 scanner.phpMode = true;
358 parseFunction(variables);
362 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
365 protected void parseFunction(HashMap variables) {
367 boolean hasModifiers = member_modifiers();
368 if (token == TokenNamefunction) {
370 checkAndSetModifiers(AccPublic);
372 this.fMethodVariables = variables;
374 MethodDeclaration methodDecl = new MethodDeclaration(null);
375 methodDecl.declarationSourceStart = scanner
376 .getCurrentTokenStartPosition();
377 methodDecl.modifiers = this.modifiers;
378 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
381 functionDefinition(methodDecl);
382 } catch (SyntaxError sytaxErr1) {
385 int sourceEnd = methodDecl.sourceEnd;
387 || methodDecl.declarationSourceStart > sourceEnd) {
388 sourceEnd = methodDecl.declarationSourceStart + 1;
390 methodDecl.sourceEnd = sourceEnd;
391 methodDecl.declarationSourceEnd = sourceEnd;
396 protected CompilationUnitDeclaration endParse(int act) {
400 // if (currentElement != null) {
401 // currentElement.topElement().updateParseTree();
402 // if (VERBOSE_RECOVERY) {
403 // System.out.print(Util.bind("parser.syntaxRecovery")); //$NON-NLS-1$
404 // System.out.println("--------------------------"); //$NON-NLS-1$
405 // System.out.println(compilationUnit);
406 // System.out.println("----------------------------------");
410 if (diet & VERBOSE_RECOVERY) {
411 System.out.print(Util.bind("parser.regularParse")); //$NON-NLS-1$
412 System.out.println("--------------------------"); //$NON-NLS-1$
413 System.out.println(compilationUnit);
414 System.out.println("----------------------------------"); //$NON-NLS-1$
417 if (scanner.recordLineSeparator) {
418 compilationUnit.compilationResult.lineSeparatorPositions = scanner
421 if (scanner.taskTags != null) {
422 for (int i = 0; i < scanner.foundTaskCount; i++) {
423 problemReporter().task(
424 new String(scanner.foundTaskTags[i]),
425 new String(scanner.foundTaskMessages[i]),
426 scanner.foundTaskPriorities[i] == null ? null
427 : new String(scanner.foundTaskPriorities[i]),
428 scanner.foundTaskPositions[i][0],
429 scanner.foundTaskPositions[i][1]);
432 compilationUnit.imports = new ImportReference[includesList.size()];
433 for (int i = 0; i < includesList.size(); i++) {
434 compilationUnit.imports[i] = (ImportReference) includesList.get(i);
436 return compilationUnit;
439 private Block statementList() {
440 boolean branchStatement = false;
442 int blockStart = scanner.getCurrentTokenStartPosition();
443 ArrayList blockStatements = new ArrayList();
446 statement = statement();
447 blockStatements.add(statement);
448 if (token == TokenNameEOF) {
451 if (branchStatement && statement != null) {
452 // reportSyntaxError("Unreachable code",
453 // statement.sourceStart,
454 // statement.sourceEnd);
455 if (!(statement instanceof BreakStatement)) {
457 * don't give an error for break statement following
458 * return statement Technically it's unreachable code,
459 * but in switch-case it's recommended to avoid
460 * accidental fall-through later when editing the code
462 problemReporter.unreachableCode(new String(scanner
463 .getCurrentIdentifierSource()),
464 statement.sourceStart, statement.sourceEnd,
466 compilationUnit.compilationResult);
469 if ((token == TokenNameRBRACE) || (token == TokenNamecase)
470 || (token == TokenNamedefault)
471 || (token == TokenNameelse)
472 || (token == TokenNameelseif)
473 || (token == TokenNameendif)
474 || (token == TokenNameendfor)
475 || (token == TokenNameendforeach)
476 || (token == TokenNameendwhile)
477 || (token == TokenNameendswitch)
478 || (token == TokenNameenddeclare)
479 || (token == TokenNameEOF) || (token == TokenNameERROR)) {
480 return createBlock(blockStart, blockStatements);
482 branchStatement = checkUnreachableStatements(statement);
483 } catch (SyntaxError sytaxErr1) {
484 // if an error occured,
485 // try to find keywords
486 // to parse the rest of the string
487 boolean tokenize = scanner.tokenizeStrings;
489 scanner.tokenizeStrings = true;
492 while (token != TokenNameEOF) {
493 if ((token == TokenNameRBRACE)
494 || (token == TokenNamecase)
495 || (token == TokenNamedefault)
496 || (token == TokenNameelse)
497 || (token == TokenNameelseif)
498 || (token == TokenNameendif)
499 || (token == TokenNameendfor)
500 || (token == TokenNameendforeach)
501 || (token == TokenNameendwhile)
502 || (token == TokenNameendswitch)
503 || (token == TokenNameenddeclare)
504 || (token == TokenNameEOF)
505 || (token == TokenNameERROR)) {
506 return createBlock(blockStart, blockStatements);
508 if (token == TokenNameif || token == TokenNameswitch
509 || token == TokenNamefor
510 || token == TokenNamewhile
511 || token == TokenNamedo
512 || token == TokenNameforeach
513 || token == TokenNamecontinue
514 || token == TokenNamebreak
515 || token == TokenNamereturn
516 || token == TokenNameexit
517 || token == TokenNameecho
518 || token == TokenNameECHO_INVISIBLE
519 || token == TokenNameglobal
520 || token == TokenNamestatic
521 || token == TokenNameunset
522 || token == TokenNamefunction
523 || token == TokenNamedeclare
524 || token == TokenNametry
525 || token == TokenNamecatch
526 || token == TokenNamethrow
527 || token == TokenNamefinal
528 || token == TokenNameabstract
529 || token == TokenNameclass
530 || token == TokenNameinterface) {
533 // System.out.println(scanner.toStringAction(token));
535 // System.out.println(scanner.toStringAction(token));
537 if (token == TokenNameEOF) {
541 scanner.tokenizeStrings = tokenize;
551 private boolean checkUnreachableStatements(Statement statement) {
552 if (statement instanceof ReturnStatement
553 || statement instanceof ContinueStatement
554 || statement instanceof BreakStatement) {
556 } else if (statement instanceof IfStatement
557 && ((IfStatement) statement).checkUnreachable) {
565 * @param blockStatements
568 private Block createBlock(int blockStart, ArrayList blockStatements) {
569 int blockEnd = scanner.getCurrentTokenEndPosition();
570 Block b = Block.EmptyWith(blockStart, blockEnd);
571 b.statements = new Statement[blockStatements.size()];
572 blockStatements.toArray(b.statements);
576 private void functionBody(MethodDeclaration methodDecl) {
577 // '{' [statement-list] '}'
578 if (token == TokenNameLBRACE) {
581 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
582 throwSyntaxError("'{' expected in compound-statement.");
584 if (token != TokenNameRBRACE) {
587 if (token == TokenNameRBRACE) {
588 methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
591 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
592 throwSyntaxError("'}' expected in compound-statement.");
596 private Statement statement() {
597 Statement statement = null;
598 Expression expression;
599 int sourceStart = scanner.getCurrentTokenStartPosition();
601 if (token == TokenNameif) {
602 // T_IF '(' expr ')' statement elseif_list else_single
603 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
604 // new_else_single T_ENDIF ';'
606 if (token == TokenNameLPAREN) {
609 throwSyntaxError("'(' expected after 'if' keyword.");
612 if (token == TokenNameRPAREN) {
615 throwSyntaxError("')' expected after 'if' condition.");
617 // create basic IfStatement
618 IfStatement ifStatement = new IfStatement(expression, null, null,
620 if (token == TokenNameCOLON) {
622 ifStatementColon(ifStatement);
624 ifStatement(ifStatement);
627 } else if (token == TokenNameswitch) {
629 if (token == TokenNameLPAREN) {
632 throwSyntaxError("'(' expected after 'switch' keyword.");
635 if (token == TokenNameRPAREN) {
638 throwSyntaxError("')' expected after 'switch' condition.");
642 } else if (token == TokenNamefor) {
644 if (token == TokenNameLPAREN) {
647 throwSyntaxError("'(' expected after 'for' keyword.");
649 if (token == TokenNameSEMICOLON) {
653 if (token == TokenNameSEMICOLON) {
656 throwSyntaxError("';' expected after 'for'.");
659 if (token == TokenNameSEMICOLON) {
663 if (token == TokenNameSEMICOLON) {
666 throwSyntaxError("';' expected after 'for'.");
669 if (token == TokenNameRPAREN) {
673 if (token == TokenNameRPAREN) {
676 throwSyntaxError("')' expected after 'for'.");
681 } else if (token == TokenNamewhile) {
683 if (token == TokenNameLPAREN) {
686 throwSyntaxError("'(' expected after 'while' keyword.");
689 if (token == TokenNameRPAREN) {
692 throwSyntaxError("')' expected after 'while' condition.");
696 } else if (token == TokenNamedo) {
698 if (token == TokenNameLBRACE) {
700 if (token != TokenNameRBRACE) {
703 if (token == TokenNameRBRACE) {
706 throwSyntaxError("'}' expected after 'do' keyword.");
711 if (token == TokenNamewhile) {
713 if (token == TokenNameLPAREN) {
716 throwSyntaxError("'(' expected after 'while' keyword.");
719 if (token == TokenNameRPAREN) {
722 throwSyntaxError("')' expected after 'while' condition.");
725 throwSyntaxError("'while' expected after 'do' keyword.");
727 if (token == TokenNameSEMICOLON) {
730 if (token != TokenNameINLINE_HTML) {
731 throwSyntaxError("';' expected after do-while statement.");
736 } else if (token == TokenNameforeach) {
738 if (token == TokenNameLPAREN) {
741 throwSyntaxError("'(' expected after 'foreach' keyword.");
744 if (token == TokenNameas) {
747 throwSyntaxError("'as' expected after 'foreach' exxpression.");
751 foreach_optional_arg();
752 if (token == TokenNameEQUAL_GREATER) {
754 variable(false, false);
756 if (token == TokenNameRPAREN) {
759 throwSyntaxError("')' expected after 'foreach' expression.");
763 } else if (token == TokenNamebreak) {
766 if (token != TokenNameSEMICOLON) {
769 if (token == TokenNameSEMICOLON) {
770 sourceEnd = scanner.getCurrentTokenEndPosition();
773 if (token != TokenNameINLINE_HTML) {
774 throwSyntaxError("';' expected after 'break'.");
776 sourceEnd = scanner.getCurrentTokenEndPosition();
779 return new BreakStatement(null, sourceStart, sourceEnd);
780 } else if (token == TokenNamecontinue) {
783 if (token != TokenNameSEMICOLON) {
786 if (token == TokenNameSEMICOLON) {
787 sourceEnd = scanner.getCurrentTokenEndPosition();
790 if (token != TokenNameINLINE_HTML) {
791 throwSyntaxError("';' expected after 'continue'.");
793 sourceEnd = scanner.getCurrentTokenEndPosition();
796 return new ContinueStatement(null, sourceStart, sourceEnd);
797 } else if (token == TokenNamereturn) {
800 if (token != TokenNameSEMICOLON) {
803 if (token == TokenNameSEMICOLON) {
804 sourceEnd = scanner.getCurrentTokenEndPosition();
807 if (token != TokenNameINLINE_HTML) {
808 throwSyntaxError("';' expected after 'return'.");
810 sourceEnd = scanner.getCurrentTokenEndPosition();
813 return new ReturnStatement(expression, sourceStart, sourceEnd);
814 } else if (token == TokenNameecho) {
817 if (token == TokenNameSEMICOLON) {
820 if (token != TokenNameINLINE_HTML) {
821 throwSyntaxError("';' expected after 'echo' statement.");
826 } else if (token == TokenNameECHO_INVISIBLE) {
827 // 0-length token directly after PHP short tag <?=
830 if (token == TokenNameSEMICOLON) {
832 // if (token != TokenNameINLINE_HTML) {
833 // // TODO should this become a configurable warning?
834 // reportSyntaxError("Probably '?>' expected after PHP short tag
835 // expression (only the first expression will be echoed).");
838 if (token != TokenNameINLINE_HTML) {
839 throwSyntaxError("';' expected after PHP short tag '<?=' expression.");
844 } else if (token == TokenNameINLINE_HTML) {
847 } else if (token == TokenNameglobal) {
850 if (token == TokenNameSEMICOLON) {
853 if (token != TokenNameINLINE_HTML) {
854 throwSyntaxError("';' expected after 'global' statement.");
859 } else if (token == TokenNamestatic) {
862 if (token == TokenNameSEMICOLON) {
865 if (token != TokenNameINLINE_HTML) {
866 throwSyntaxError("';' expected after 'static' statement.");
871 } else if (token == TokenNameunset) {
873 if (token == TokenNameLPAREN) {
876 throwSyntaxError("'(' expected after 'unset' statement.");
879 if (token == TokenNameRPAREN) {
882 throwSyntaxError("')' expected after 'unset' statement.");
884 if (token == TokenNameSEMICOLON) {
887 if (token != TokenNameINLINE_HTML) {
888 throwSyntaxError("';' expected after 'unset' statement.");
893 } else if (token == TokenNamefunction) {
894 MethodDeclaration methodDecl = new MethodDeclaration(
895 this.compilationUnit.compilationResult);
896 methodDecl.declarationSourceStart = scanner
897 .getCurrentTokenStartPosition();
898 methodDecl.modifiers = AccDefault;
899 methodDecl.type = MethodDeclaration.FUNCTION_DEFINITION;
902 functionDefinition(methodDecl);
904 sourceEnd = methodDecl.sourceEnd;
906 || methodDecl.declarationSourceStart > sourceEnd) {
907 sourceEnd = methodDecl.declarationSourceStart + 1;
909 methodDecl.declarationSourceEnd = sourceEnd;
910 methodDecl.sourceEnd = sourceEnd;
913 } else if (token == TokenNamedeclare) {
914 // T_DECLARE '(' declare_list ')' declare_statement
916 if (token != TokenNameLPAREN) {
917 throwSyntaxError("'(' expected in 'declare' statement.");
921 if (token != TokenNameRPAREN) {
922 throwSyntaxError("')' expected in 'declare' statement.");
927 } else if (token == TokenNametry) {
929 if (token != TokenNameLBRACE) {
930 throwSyntaxError("'{' expected in 'try' statement.");
934 if (token != TokenNameRBRACE) {
935 throwSyntaxError("'}' expected in 'try' statement.");
939 } else if (token == TokenNamecatch) {
941 if (token != TokenNameLPAREN) {
942 throwSyntaxError("'(' expected in 'catch' statement.");
945 fully_qualified_class_name();
946 if (token != TokenNameVariable) {
947 throwSyntaxError("Variable expected in 'catch' statement.");
951 if (token != TokenNameRPAREN) {
952 throwSyntaxError("')' expected in 'catch' statement.");
955 if (token != TokenNameLBRACE) {
956 throwSyntaxError("'{' expected in 'catch' statement.");
959 if (token != TokenNameRBRACE) {
961 if (token != TokenNameRBRACE) {
962 throwSyntaxError("'}' expected in 'catch' statement.");
966 additional_catches();
968 } else if (token == TokenNamethrow) {
971 if (token == TokenNameSEMICOLON) {
974 throwSyntaxError("';' expected after 'throw' exxpression.");
977 } else if (token == TokenNamefinal || token == TokenNameabstract
978 || token == TokenNameclass || token == TokenNameinterface) {
980 TypeDeclaration typeDecl = new TypeDeclaration(
981 this.compilationUnit.compilationResult);
982 typeDecl.declarationSourceStart = scanner
983 .getCurrentTokenStartPosition();
984 typeDecl.declarationSourceEnd = scanner
985 .getCurrentTokenEndPosition();
986 typeDecl.name = new char[] { ' ' };
987 // default super class
988 typeDecl.superclass = new SingleTypeReference(
989 TypeConstants.OBJECT, 0);
990 compilationUnit.types.add(typeDecl);
991 pushOnAstStack(typeDecl);
992 unticked_class_declaration_statement(typeDecl);
1000 // throwSyntaxError("Unexpected keyword '" + keyword + "'");
1001 } else if (token == TokenNameLBRACE) {
1003 if (token != TokenNameRBRACE) {
1004 statement = statementList();
1006 if (token == TokenNameRBRACE) {
1010 throwSyntaxError("'}' expected.");
1013 if (token != TokenNameSEMICOLON) {
1016 if (token == TokenNameSEMICOLON) {
1020 if (token == TokenNameRBRACE) {
1021 reportSyntaxError("';' expected after expression (Found token: "
1022 + scanner.toStringAction(token) + ")");
1024 if (token != TokenNameINLINE_HTML && token != TokenNameEOF) {
1025 throwSyntaxError("';' expected after expression (Found token: "
1026 + scanner.toStringAction(token) + ")");
1036 private void declare_statement() {
1038 // | ':' inner_statement_list T_ENDDECLARE ';'
1040 if (token == TokenNameCOLON) {
1042 // TODO: implement inner_statement_list();
1044 if (token != TokenNameenddeclare) {
1045 throwSyntaxError("'enddeclare' expected in 'declare' statement.");
1048 if (token != TokenNameSEMICOLON) {
1049 throwSyntaxError("';' expected after 'enddeclare' keyword.");
1057 private void declare_list() {
1058 // T_STRING '=' static_scalar
1059 // | declare_list ',' T_STRING '=' static_scalar
1061 if (token != TokenNameIdentifier) {
1062 throwSyntaxError("Identifier expected in 'declare' list.");
1065 if (token != TokenNameEQUAL) {
1066 throwSyntaxError("'=' expected in 'declare' list.");
1070 if (token != TokenNameCOMMA) {
1077 private void additional_catches() {
1078 while (token == TokenNamecatch) {
1080 if (token != TokenNameLPAREN) {
1081 throwSyntaxError("'(' expected in 'catch' statement.");
1084 fully_qualified_class_name();
1085 if (token != TokenNameVariable) {
1086 throwSyntaxError("Variable expected in 'catch' statement.");
1090 if (token != TokenNameRPAREN) {
1091 throwSyntaxError("')' expected in 'catch' statement.");
1094 if (token != TokenNameLBRACE) {
1095 throwSyntaxError("'{' expected in 'catch' statement.");
1098 if (token != TokenNameRBRACE) {
1101 if (token != TokenNameRBRACE) {
1102 throwSyntaxError("'}' expected in 'catch' statement.");
1108 private void foreach_variable() {
1111 if (token == TokenNameAND) {
1117 private void foreach_optional_arg() {
1119 // | T_DOUBLE_ARROW foreach_variable
1120 if (token == TokenNameEQUAL_GREATER) {
1126 private void global_var_list() {
1128 // global_var_list ',' global_var
1130 HashSet set = peekVariableSet();
1133 if (token != TokenNameCOMMA) {
1140 private void global_var(HashSet set) {
1144 // | '$' '{' expr '}'
1145 if (token == TokenNameVariable) {
1146 if (fMethodVariables != null) {
1147 VariableInfo info = new VariableInfo(scanner
1148 .getCurrentTokenStartPosition(),
1149 VariableInfo.LEVEL_GLOBAL_VAR);
1150 fMethodVariables.put(new String(scanner
1151 .getCurrentIdentifierSource()), info);
1153 addVariableSet(set);
1155 } else if (token == TokenNameDOLLAR) {
1157 if (token == TokenNameLBRACE) {
1160 if (token != TokenNameRBRACE) {
1161 throwSyntaxError("'}' expected in global variable.");
1170 private void static_var_list() {
1172 // static_var_list ',' T_VARIABLE
1173 // | static_var_list ',' T_VARIABLE '=' static_scalar
1175 // | T_VARIABLE '=' static_scalar,
1176 HashSet set = peekVariableSet();
1178 if (token == TokenNameVariable) {
1179 if (fMethodVariables != null) {
1180 VariableInfo info = new VariableInfo(scanner
1181 .getCurrentTokenStartPosition(),
1182 VariableInfo.LEVEL_STATIC_VAR);
1183 fMethodVariables.put(new String(scanner
1184 .getCurrentIdentifierSource()), info);
1186 addVariableSet(set);
1188 if (token == TokenNameEQUAL) {
1192 if (token != TokenNameCOMMA) {
1202 private void unset_variables() {
1205 // | unset_variables ',' unset_variable
1209 variable(false, false);
1210 if (token != TokenNameCOMMA) {
1217 private final void initializeModifiers() {
1219 this.modifiersSourceStart = -1;
1222 private final void checkAndSetModifiers(int flag) {
1223 this.modifiers |= flag;
1224 if (this.modifiersSourceStart < 0)
1225 this.modifiersSourceStart = this.scanner.startPosition;
1228 private void unticked_class_declaration_statement(TypeDeclaration typeDecl) {
1229 initializeModifiers();
1230 if (token == TokenNameinterface) {
1231 // interface_entry T_STRING
1232 // interface_extends_list
1233 // '{' class_statement_list '}'
1234 checkAndSetModifiers(AccInterface);
1236 typeDecl.modifiers = this.modifiers;
1237 typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1238 typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1239 if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
1240 typeDecl.name = scanner.getCurrentIdentifierSource();
1241 if (token > TokenNameKEYWORD) {
1242 problemReporter.phpKeywordWarning(new String[] { scanner
1243 .toStringAction(token) }, scanner
1244 .getCurrentTokenStartPosition(), scanner
1245 .getCurrentTokenEndPosition(), referenceContext,
1246 compilationUnit.compilationResult);
1247 // throwSyntaxError("Don't use a keyword for interface
1249 // + scanner.toStringAction(token) + "].",
1250 // typeDecl.sourceStart, typeDecl.sourceEnd);
1253 interface_extends_list(typeDecl);
1255 typeDecl.name = new char[] { ' ' };
1257 "Interface name expected after keyword 'interface'.",
1258 typeDecl.sourceStart, typeDecl.sourceEnd);
1262 // class_entry_type T_STRING extends_from
1264 // '{' class_statement_list'}'
1266 typeDecl.modifiers = this.modifiers;
1267 typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1268 typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1270 // identifier 'extends' identifier
1271 if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
1272 typeDecl.name = scanner.getCurrentIdentifierSource();
1273 if (token > TokenNameKEYWORD) {
1274 problemReporter.phpKeywordWarning(new String[] { scanner
1275 .toStringAction(token) }, scanner
1276 .getCurrentTokenStartPosition(), scanner
1277 .getCurrentTokenEndPosition(), referenceContext,
1278 compilationUnit.compilationResult);
1279 // throwSyntaxError("Don't use a keyword for class
1281 // scanner.toStringAction(token) + "].",
1282 // typeDecl.sourceStart, typeDecl.sourceEnd);
1287 // | T_EXTENDS fully_qualified_class_name
1288 if (token == TokenNameextends) {
1289 class_extends_list(typeDecl);
1291 // if (token != TokenNameIdentifier) {
1292 // throwSyntaxError("Class name expected after keyword
1294 // scanner.getCurrentTokenStartPosition(), scanner
1295 // .getCurrentTokenEndPosition());
1298 implements_list(typeDecl);
1300 typeDecl.name = new char[] { ' ' };
1301 throwSyntaxError("Class name expected after keyword 'class'.",
1302 typeDecl.sourceStart, typeDecl.sourceEnd);
1306 // '{' class_statement_list '}'
1307 if (token == TokenNameLBRACE) {
1309 if (token != TokenNameRBRACE) {
1310 ArrayList list = new ArrayList();
1311 class_statement_list(list);
1312 typeDecl.fields = new FieldDeclaration[list.size()];
1313 for (int i = 0; i < list.size(); i++) {
1314 typeDecl.fields[i] = (FieldDeclaration) list.get(i);
1317 if (token == TokenNameRBRACE) {
1318 typeDecl.declarationSourceEnd = scanner
1319 .getCurrentTokenEndPosition();
1322 throwSyntaxError("'}' expected at end of class body.");
1325 throwSyntaxError("'{' expected at start of class body.");
1329 private void class_entry_type() {
1331 // | T_ABSTRACT T_CLASS
1332 // | T_FINAL T_CLASS
1333 if (token == TokenNameclass) {
1335 } else if (token == TokenNameabstract) {
1336 checkAndSetModifiers(AccAbstract);
1338 if (token != TokenNameclass) {
1339 throwSyntaxError("Keyword 'class' expected after keyword 'abstract'.");
1342 } else if (token == TokenNamefinal) {
1343 checkAndSetModifiers(AccFinal);
1345 if (token != TokenNameclass) {
1346 throwSyntaxError("Keyword 'class' expected after keyword 'final'.");
1350 throwSyntaxError("Keyword 'class' 'final' or 'abstract' expected");
1354 // private void class_extends(TypeDeclaration typeDecl) {
1356 // // | T_EXTENDS interface_list
1357 // if (token == TokenNameextends) {
1360 // if (token == TokenNameIdentifier) {
1363 // throwSyntaxError("Class name expected after keyword 'extends'.");
1368 private void interface_extends_list(TypeDeclaration typeDecl) {
1370 // | T_EXTENDS interface_list
1371 if (token == TokenNameextends) {
1373 interface_list(typeDecl);
1377 private void class_extends_list(TypeDeclaration typeDecl) {
1379 // | T_EXTENDS interface_list
1380 if (token == TokenNameextends) {
1382 class_list(typeDecl);
1386 private void implements_list(TypeDeclaration typeDecl) {
1388 // | T_IMPLEMENTS interface_list
1389 if (token == TokenNameimplements) {
1391 interface_list(typeDecl);
1395 private void class_list(TypeDeclaration typeDecl) {
1397 // fully_qualified_class_name
1399 if (token == TokenNameIdentifier) {
1400 char[] ident = scanner.getCurrentIdentifierSource();
1401 // TODO make this code working better:
1402 // SingleTypeReference ref =
1403 // ParserUtil.getTypeReference(scanner,
1404 // includesList, ident);
1405 // if (ref != null) {
1406 // typeDecl.superclass = ref;
1410 throwSyntaxError("Classname expected after keyword 'extends'.");
1412 if (token == TokenNameCOMMA) {
1413 reportSyntaxError("No multiple inheritance allowed. Expected token 'implements' or '{'.");
1422 private void interface_list(TypeDeclaration typeDecl) {
1424 // fully_qualified_class_name
1425 // | interface_list ',' fully_qualified_class_name
1427 if (token == TokenNameIdentifier) {
1430 throwSyntaxError("Interfacename expected after keyword 'implements'.");
1432 if (token != TokenNameCOMMA) {
1439 // private void classBody(TypeDeclaration typeDecl) {
1440 // //'{' [class-element-list] '}'
1441 // if (token == TokenNameLBRACE) {
1443 // if (token != TokenNameRBRACE) {
1444 // class_statement_list();
1446 // if (token == TokenNameRBRACE) {
1447 // typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
1450 // throwSyntaxError("'}' expected at end of class body.");
1453 // throwSyntaxError("'{' expected at start of class body.");
1456 private void class_statement_list(ArrayList list) {
1459 class_statement(list);
1460 if (token == TokenNamepublic || token == TokenNameprotected
1461 || token == TokenNameprivate
1462 || token == TokenNamestatic
1463 || token == TokenNameabstract
1464 || token == TokenNamefinal
1465 || token == TokenNamefunction || token == TokenNamevar
1466 || token == TokenNameconst) {
1469 if (token == TokenNameRBRACE) {
1472 throwSyntaxError("'}' at end of class statement.");
1473 } catch (SyntaxError sytaxErr1) {
1474 boolean tokenize = scanner.tokenizeStrings;
1476 scanner.tokenizeStrings = true;
1479 // if an error occured,
1480 // try to find keywords
1481 // to parse the rest of the string
1482 while (token != TokenNameEOF) {
1483 if (token == TokenNamepublic
1484 || token == TokenNameprotected
1485 || token == TokenNameprivate
1486 || token == TokenNamestatic
1487 || token == TokenNameabstract
1488 || token == TokenNamefinal
1489 || token == TokenNamefunction
1490 || token == TokenNamevar
1491 || token == TokenNameconst) {
1494 // System.out.println(scanner.toStringAction(token));
1497 if (token == TokenNameEOF) {
1501 scanner.tokenizeStrings = tokenize;
1507 private void class_statement(ArrayList list) {
1509 // variable_modifiers class_variable_declaration ';'
1510 // | class_constant_declaration ';'
1511 // | method_modifiers T_FUNCTION is_reference T_STRING
1512 // '(' parameter_list ')' method_body
1513 initializeModifiers();
1514 int declarationSourceStart = scanner.getCurrentTokenStartPosition();
1516 if (token == TokenNamevar) {
1517 checkAndSetModifiers(AccPublic);
1518 problemReporter.phpVarDeprecatedWarning(scanner
1519 .getCurrentTokenStartPosition(), scanner
1520 .getCurrentTokenEndPosition(), referenceContext,
1521 compilationUnit.compilationResult);
1523 class_variable_declaration(declarationSourceStart, list);
1524 } else if (token == TokenNameconst) {
1525 checkAndSetModifiers(AccFinal | AccPublic);
1526 class_constant_declaration(declarationSourceStart, list);
1527 if (token != TokenNameSEMICOLON) {
1528 throwSyntaxError("';' expected after class const declaration.");
1532 boolean hasModifiers = member_modifiers();
1533 if (token == TokenNamefunction) {
1534 if (!hasModifiers) {
1535 checkAndSetModifiers(AccPublic);
1537 MethodDeclaration methodDecl = new MethodDeclaration(
1538 this.compilationUnit.compilationResult);
1539 methodDecl.declarationSourceStart = scanner
1540 .getCurrentTokenStartPosition();
1541 methodDecl.modifiers = this.modifiers;
1542 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
1545 functionDefinition(methodDecl);
1547 int sourceEnd = methodDecl.sourceEnd;
1549 || methodDecl.declarationSourceStart > sourceEnd) {
1550 sourceEnd = methodDecl.declarationSourceStart + 1;
1552 methodDecl.declarationSourceEnd = sourceEnd;
1553 methodDecl.sourceEnd = sourceEnd;
1556 if (!hasModifiers) {
1557 throwSyntaxError("'public' 'private' or 'protected' modifier expected for field declarations.");
1559 class_variable_declaration(declarationSourceStart, list);
1564 private void class_constant_declaration(int declarationSourceStart,
1566 // class_constant_declaration ',' T_STRING '=' static_scalar
1567 // | T_CONST T_STRING '=' static_scalar
1568 if (token != TokenNameconst) {
1569 throwSyntaxError("'const' keyword expected in class declaration.");
1574 if (token != TokenNameIdentifier) {
1575 throwSyntaxError("Identifier expected in class const declaration.");
1577 FieldDeclaration fieldDeclaration = new FieldDeclaration(scanner
1578 .getCurrentIdentifierSource(), scanner
1579 .getCurrentTokenStartPosition(), scanner
1580 .getCurrentTokenEndPosition());
1581 fieldDeclaration.modifiers = this.modifiers;
1582 fieldDeclaration.declarationSourceStart = declarationSourceStart;
1583 fieldDeclaration.declarationSourceEnd = scanner
1584 .getCurrentTokenEndPosition();
1585 fieldDeclaration.modifiersSourceStart = declarationSourceStart;
1586 // fieldDeclaration.type
1587 list.add(fieldDeclaration);
1589 if (token != TokenNameEQUAL) {
1590 throwSyntaxError("'=' expected in class const declaration.");
1594 if (token != TokenNameCOMMA) {
1595 break; // while(true)-loop
1601 // private void variable_modifiers() {
1602 // // variable_modifiers:
1603 // // non_empty_member_modifiers
1605 // initializeModifiers();
1606 // if (token == TokenNamevar) {
1607 // checkAndSetModifiers(AccPublic);
1608 // reportSyntaxError(
1609 // "Keyword 'var' is deprecated. Please use 'public' 'private' or
1611 // modifier for field declarations.",
1612 // scanner.getCurrentTokenStartPosition(), scanner
1613 // .getCurrentTokenEndPosition());
1616 // if (!member_modifiers()) {
1617 // throwSyntaxError("'public' 'private' or 'protected' modifier expected for
1618 // field declarations.");
1622 // private void method_modifiers() {
1623 // //method_modifiers:
1625 // //| non_empty_member_modifiers
1626 // initializeModifiers();
1627 // if (!member_modifiers()) {
1628 // checkAndSetModifiers(AccPublic);
1631 private boolean member_modifiers() {
1638 boolean foundToken = false;
1640 if (token == TokenNamepublic) {
1641 checkAndSetModifiers(AccPublic);
1644 } else if (token == TokenNameprotected) {
1645 checkAndSetModifiers(AccProtected);
1648 } else if (token == TokenNameprivate) {
1649 checkAndSetModifiers(AccPrivate);
1652 } else if (token == TokenNamestatic) {
1653 checkAndSetModifiers(AccStatic);
1656 } else if (token == TokenNameabstract) {
1657 checkAndSetModifiers(AccAbstract);
1660 } else if (token == TokenNamefinal) {
1661 checkAndSetModifiers(AccFinal);
1671 private void class_variable_declaration(int declarationSourceStart,
1673 // class_variable_declaration:
1674 // class_variable_declaration ',' T_VARIABLE
1675 // | class_variable_declaration ',' T_VARIABLE '=' static_scalar
1677 // | T_VARIABLE '=' static_scalar
1678 char[] classVariable;
1680 if (token == TokenNameVariable) {
1681 classVariable = scanner.getCurrentIdentifierSource();
1682 // indexManager.addIdentifierInformation('v', classVariable,
1685 FieldDeclaration fieldDeclaration = new FieldDeclaration(
1686 classVariable, scanner.getCurrentTokenStartPosition(),
1687 scanner.getCurrentTokenEndPosition());
1688 fieldDeclaration.modifiers = this.modifiers;
1689 fieldDeclaration.declarationSourceStart = declarationSourceStart;
1690 fieldDeclaration.declarationSourceEnd = scanner
1691 .getCurrentTokenEndPosition();
1692 fieldDeclaration.modifiersSourceStart = declarationSourceStart;
1693 list.add(fieldDeclaration);
1694 if (fTypeVariables != null) {
1695 VariableInfo info = new VariableInfo(scanner
1696 .getCurrentTokenStartPosition(),
1697 VariableInfo.LEVEL_CLASS_UNIT);
1698 fTypeVariables.put(new String(scanner
1699 .getCurrentIdentifierSource()), info);
1702 if (token == TokenNameEQUAL) {
1707 // if (token == TokenNamethis) {
1708 // throwSyntaxError("'$this' not allowed after keyword 'public'
1709 // 'protected' 'private' 'var'.");
1711 throwSyntaxError("Variable expected after keyword 'public' 'protected' 'private' 'var'.");
1713 if (token != TokenNameCOMMA) {
1718 if (token != TokenNameSEMICOLON) {
1719 throwSyntaxError("';' expected after field declaration.");
1724 private void functionDefinition(MethodDeclaration methodDecl) {
1725 boolean isAbstract = false;
1727 if (compilationUnit != null) {
1728 compilationUnit.types.add(methodDecl);
1731 ASTNode node = astStack[astPtr];
1732 if (node instanceof TypeDeclaration) {
1733 TypeDeclaration typeDecl = ((TypeDeclaration) node);
1734 if (typeDecl.methods == null) {
1735 typeDecl.methods = new AbstractMethodDeclaration[] { methodDecl };
1737 AbstractMethodDeclaration[] newMethods;
1742 newMethods = new AbstractMethodDeclaration[typeDecl.methods.length + 1],
1743 0, typeDecl.methods.length);
1744 newMethods[typeDecl.methods.length] = methodDecl;
1745 typeDecl.methods = newMethods;
1747 if ((typeDecl.modifiers & AccAbstract) == AccAbstract) {
1749 } else if ((typeDecl.modifiers & AccInterface) == AccInterface) {
1755 pushFunctionVariableSet();
1756 functionDeclarator(methodDecl);
1757 if (token == TokenNameSEMICOLON) {
1759 methodDecl.sourceEnd = scanner
1760 .getCurrentTokenStartPosition() - 1;
1761 throwSyntaxError("Body declaration expected for method: "
1762 + new String(methodDecl.selector));
1767 functionBody(methodDecl);
1769 if (!fStackUnassigned.isEmpty()) {
1770 fStackUnassigned.remove(fStackUnassigned.size() - 1);
1775 private void functionDeclarator(MethodDeclaration methodDecl) {
1776 // identifier '(' [parameter-list] ')'
1777 if (token == TokenNameAND) {
1780 methodDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1781 methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1782 if (Scanner.isIdentifierOrKeyword(token)) {
1783 methodDecl.selector = scanner.getCurrentIdentifierSource();
1784 if (token > TokenNameKEYWORD) {
1785 problemReporter.phpKeywordWarning(new String[] { scanner
1786 .toStringAction(token) }, scanner
1787 .getCurrentTokenStartPosition(), scanner
1788 .getCurrentTokenEndPosition(), referenceContext,
1789 compilationUnit.compilationResult);
1792 if (token == TokenNameLPAREN) {
1795 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1796 throwSyntaxError("'(' expected in function declaration.");
1798 if (token != TokenNameRPAREN) {
1799 parameter_list(methodDecl);
1801 if (token != TokenNameRPAREN) {
1802 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1803 throwSyntaxError("')' expected in function declaration.");
1805 methodDecl.bodyStart = scanner.getCurrentTokenEndPosition() + 1;
1809 methodDecl.selector = "<undefined>".toCharArray();
1810 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1811 throwSyntaxError("Function name expected after keyword 'function'.");
1816 private void parameter_list(MethodDeclaration methodDecl) {
1817 // non_empty_parameter_list
1819 non_empty_parameter_list(methodDecl, true);
1822 private void non_empty_parameter_list(MethodDeclaration methodDecl,
1823 boolean empty_allowed) {
1824 // optional_class_type T_VARIABLE
1825 // | optional_class_type '&' T_VARIABLE
1826 // | optional_class_type '&' T_VARIABLE '=' static_scalar
1827 // | optional_class_type T_VARIABLE '=' static_scalar
1828 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE
1829 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE
1830 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE '='
1832 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE '='
1834 char[] typeIdentifier = null;
1835 if (token == TokenNameIdentifier || token == TokenNamearray
1836 || token == TokenNameVariable || token == TokenNameAND) {
1837 HashSet set = peekVariableSet();
1839 if (token == TokenNameIdentifier || token == TokenNamearray) {// feature
1842 typeIdentifier = scanner.getCurrentIdentifierSource();
1845 if (token == TokenNameAND) {
1848 if (token == TokenNameVariable) {
1849 if (fMethodVariables != null) {
1851 if (methodDecl.type == MethodDeclaration.FUNCTION_DEFINITION) {
1852 info = new VariableInfo(scanner
1853 .getCurrentTokenStartPosition(),
1854 VariableInfo.LEVEL_FUNCTION_DEFINITION);
1856 info = new VariableInfo(scanner
1857 .getCurrentTokenStartPosition(),
1858 VariableInfo.LEVEL_METHOD_DEFINITION);
1860 info.typeIdentifier = typeIdentifier;
1861 fMethodVariables.put(new String(scanner
1862 .getCurrentIdentifierSource()), info);
1864 addVariableSet(set);
1866 if (token == TokenNameEQUAL) {
1871 throwSyntaxError("Variable expected in parameter list.");
1873 if (token != TokenNameCOMMA) {
1880 if (!empty_allowed) {
1881 throwSyntaxError("Identifier expected in parameter list.");
1885 private void optional_class_type() {
1890 // private void parameterDeclaration() {
1892 // //variable-reference
1893 // if (token == TokenNameAND) {
1895 // if (isVariable()) {
1898 // throwSyntaxError("Variable expected after reference operator '&'.");
1901 // //variable '=' constant
1902 // if (token == TokenNameVariable) {
1904 // if (token == TokenNameEQUAL) {
1910 // // if (token == TokenNamethis) {
1911 // // throwSyntaxError("Reserved word '$this' not allowed in parameter
1912 // // declaration.");
1916 private void labeledStatementList() {
1917 if (token != TokenNamecase && token != TokenNamedefault) {
1918 throwSyntaxError("'case' or 'default' expected.");
1921 if (token == TokenNamecase) {
1923 expr(); // constant();
1924 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
1926 if (token == TokenNameRBRACE) {
1927 // empty case; assumes that the '}' token belongs to the
1929 // switch statement - #1371992
1932 if (token == TokenNamecase || token == TokenNamedefault) {
1933 // empty case statement ?
1938 // else if (token == TokenNameSEMICOLON) {
1940 // "':' expected after 'case' keyword (Found token: " +
1941 // scanner.toStringAction(token) + ")",
1942 // scanner.getCurrentTokenStartPosition(),
1943 // scanner.getCurrentTokenEndPosition(),
1946 // if (token == TokenNamecase) { // empty case statement ?
1952 throwSyntaxError("':' character expected after 'case' constant (Found token: "
1953 + scanner.toStringAction(token) + ")");
1955 } else { // TokenNamedefault
1957 if (token == TokenNameCOLON || token == TokenNameSEMICOLON) {
1959 if (token == TokenNameRBRACE) {
1960 // empty default case; ; assumes that the '}' token
1962 // wrapping switch statement - #1371992
1965 if (token != TokenNamecase) {
1969 throwSyntaxError("':' character expected after 'default'.");
1972 } while (token == TokenNamecase || token == TokenNamedefault);
1975 private void ifStatementColon(IfStatement iState) {
1976 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
1977 // new_else_single T_ENDIF ';'
1978 HashSet assignedVariableSet = null;
1980 Block b = inner_statement_list();
1981 iState.thenStatement = b;
1982 checkUnreachable(iState, b);
1984 assignedVariableSet = removeIfVariableSet();
1986 if (token == TokenNameelseif) {
1988 pushIfVariableSet();
1989 new_elseif_list(iState);
1991 HashSet set = removeIfVariableSet();
1992 if (assignedVariableSet != null && set != null) {
1993 assignedVariableSet.addAll(set);
1998 pushIfVariableSet();
1999 new_else_single(iState);
2001 HashSet set = removeIfVariableSet();
2002 if (assignedVariableSet != null) {
2003 HashSet topSet = peekVariableSet();
2004 if (topSet != null) {
2008 topSet.addAll(assignedVariableSet);
2012 if (token != TokenNameendif) {
2013 throwSyntaxError("'endif' expected.");
2016 if (token != TokenNameSEMICOLON && token != TokenNameINLINE_HTML) {
2017 reportSyntaxError("';' expected after if-statement.");
2018 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
2020 iState.sourceEnd = scanner.getCurrentTokenEndPosition();
2025 private void ifStatement(IfStatement iState) {
2026 // T_IF '(' expr ')' statement elseif_list else_single
2027 HashSet assignedVariableSet = null;
2029 pushIfVariableSet();
2030 Statement s = statement();
2031 iState.thenStatement = s;
2032 checkUnreachable(iState, s);
2034 assignedVariableSet = removeIfVariableSet();
2037 if (token == TokenNameelseif) {
2039 pushIfVariableSet();
2040 elseif_list(iState);
2042 HashSet set = removeIfVariableSet();
2043 if (assignedVariableSet != null && set != null) {
2044 assignedVariableSet.addAll(set);
2049 pushIfVariableSet();
2050 else_single(iState);
2052 HashSet set = removeIfVariableSet();
2053 if (assignedVariableSet != null) {
2054 HashSet topSet = peekVariableSet();
2055 if (topSet != null) {
2059 topSet.addAll(assignedVariableSet);
2065 private void elseif_list(IfStatement iState) {
2067 // | elseif_list T_ELSEIF '(' expr ')' statement
2068 ArrayList conditionList = new ArrayList();
2069 ArrayList statementList = new ArrayList();
2072 while (token == TokenNameelseif) {
2074 if (token == TokenNameLPAREN) {
2077 throwSyntaxError("'(' expected after 'elseif' keyword.");
2080 conditionList.add(e);
2081 if (token == TokenNameRPAREN) {
2084 throwSyntaxError("')' expected after 'elseif' condition.");
2087 statementList.add(s);
2088 checkUnreachable(iState, s);
2090 iState.elseifConditions = new Expression[conditionList.size()];
2091 iState.elseifStatements = new Statement[statementList.size()];
2092 conditionList.toArray(iState.elseifConditions);
2093 statementList.toArray(iState.elseifStatements);
2096 private void new_elseif_list(IfStatement iState) {
2098 // | new_elseif_list T_ELSEIF '(' expr ')' ':' inner_statement_list
2099 ArrayList conditionList = new ArrayList();
2100 ArrayList statementList = new ArrayList();
2103 while (token == TokenNameelseif) {
2105 if (token == TokenNameLPAREN) {
2108 throwSyntaxError("'(' expected after 'elseif' keyword.");
2111 conditionList.add(e);
2112 if (token == TokenNameRPAREN) {
2115 throwSyntaxError("')' expected after 'elseif' condition.");
2117 if (token == TokenNameCOLON) {
2120 throwSyntaxError("':' expected after 'elseif' keyword.");
2122 b = inner_statement_list();
2123 statementList.add(b);
2124 checkUnreachable(iState, b);
2126 iState.elseifConditions = new Expression[conditionList.size()];
2127 iState.elseifStatements = new Statement[statementList.size()];
2128 conditionList.toArray(iState.elseifConditions);
2129 statementList.toArray(iState.elseifStatements);
2132 private void else_single(IfStatement iState) {
2135 if (token == TokenNameelse) {
2137 Statement s = statement();
2138 iState.elseStatement = s;
2139 checkUnreachable(iState, s);
2141 iState.checkUnreachable = false;
2143 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
2146 private void new_else_single(IfStatement iState) {
2148 // | T_ELSE ':' inner_statement_list
2149 if (token == TokenNameelse) {
2151 if (token == TokenNameCOLON) {
2154 throwSyntaxError("':' expected after 'else' keyword.");
2156 Block b = inner_statement_list();
2157 iState.elseStatement = b;
2158 checkUnreachable(iState, b);
2160 iState.checkUnreachable = false;
2164 private Block inner_statement_list() {
2165 // inner_statement_list inner_statement
2167 return statementList();
2174 private void checkUnreachable(IfStatement iState, Statement s) {
2175 if (s instanceof Block) {
2176 Block b = (Block) s;
2177 if (b.statements == null || b.statements.length == 0) {
2178 iState.checkUnreachable = false;
2180 int off = b.statements.length - 1;
2181 if (!(b.statements[off] instanceof ReturnStatement)
2182 && !(b.statements[off] instanceof ContinueStatement)
2183 && !(b.statements[off] instanceof BreakStatement)) {
2184 if (!(b.statements[off] instanceof IfStatement)
2185 || !((IfStatement) b.statements[off]).checkUnreachable) {
2186 iState.checkUnreachable = false;
2191 if (!(s instanceof ReturnStatement)
2192 && !(s instanceof ContinueStatement)
2193 && !(s instanceof BreakStatement)) {
2194 if (!(s instanceof IfStatement)
2195 || !((IfStatement) s).checkUnreachable) {
2196 iState.checkUnreachable = false;
2202 // private void elseifStatementList() {
2204 // elseifStatement();
2206 // case TokenNameelse:
2208 // if (token == TokenNameCOLON) {
2210 // if (token != TokenNameendif) {
2215 // if (token == TokenNameif) { //'else if'
2218 // throwSyntaxError("':' expected after 'else'.");
2222 // case TokenNameelseif:
2231 // private void elseifStatement() {
2232 // if (token == TokenNameLPAREN) {
2235 // if (token != TokenNameRPAREN) {
2236 // throwSyntaxError("')' expected in else-if-statement.");
2239 // if (token != TokenNameCOLON) {
2240 // throwSyntaxError("':' expected in else-if-statement.");
2243 // if (token != TokenNameendif) {
2249 private void switchStatement() {
2250 if (token == TokenNameCOLON) {
2251 // ':' [labeled-statement-list] 'endswitch' ';'
2253 labeledStatementList();
2254 if (token != TokenNameendswitch) {
2255 throwSyntaxError("'endswitch' expected.");
2258 if (token != TokenNameSEMICOLON && token != TokenNameINLINE_HTML) {
2259 throwSyntaxError("';' expected after switch-statement.");
2263 // '{' [labeled-statement-list] '}'
2264 if (token != TokenNameLBRACE) {
2265 throwSyntaxError("'{' expected in switch statement.");
2268 if (token != TokenNameRBRACE) {
2269 labeledStatementList();
2271 if (token != TokenNameRBRACE) {
2272 throwSyntaxError("'}' expected in switch statement.");
2278 private void forStatement() {
2279 if (token == TokenNameCOLON) {
2282 if (token != TokenNameendfor) {
2283 throwSyntaxError("'endfor' expected.");
2286 if (token != TokenNameSEMICOLON && token != TokenNameINLINE_HTML) {
2287 throwSyntaxError("';' expected after for-statement.");
2295 private void whileStatement() {
2296 // ':' statement-list 'endwhile' ';'
2297 if (token == TokenNameCOLON) {
2300 if (token != TokenNameendwhile) {
2301 throwSyntaxError("'endwhile' expected.");
2304 if (token != TokenNameSEMICOLON && token != TokenNameINLINE_HTML) {
2305 throwSyntaxError("';' expected after while-statement.");
2313 private void foreachStatement() {
2314 if (token == TokenNameCOLON) {
2317 if (token != TokenNameendforeach) {
2318 throwSyntaxError("'endforeach' expected.");
2321 if (token != TokenNameSEMICOLON && token != TokenNameINLINE_HTML) {
2322 throwSyntaxError("';' expected after foreach-statement.");
2330 // private void exitStatus() {
2331 // if (token == TokenNameLPAREN) {
2334 // throwSyntaxError("'(' expected in 'exit-status'.");
2336 // if (token != TokenNameRPAREN) {
2339 // if (token == TokenNameRPAREN) {
2342 // throwSyntaxError("')' expected after 'exit-status'.");
2345 private void expressionList() {
2348 if (token == TokenNameCOMMA) {
2356 private Expression expr() {
2358 // | expr_without_variable
2359 // if (token!=TokenNameEOF) {
2360 if (Scanner.TRACE) {
2361 System.out.println("TRACE: expr()");
2363 return expr_without_variable(true, null);
2367 private Expression expr_without_variable(boolean only_variable,
2368 UninitializedVariableHandler initHandler) {
2369 int exprSourceStart = scanner.getCurrentTokenStartPosition();
2370 int exprSourceEnd = scanner.getCurrentTokenEndPosition();
2371 Expression expression = new Expression();
2372 expression.sourceStart = exprSourceStart;
2373 // default, may be overwritten
2374 expression.sourceEnd = exprSourceEnd;
2376 // internal_functions_in_yacc
2385 // | T_INC rw_variable
2386 // | T_DEC rw_variable
2387 // | T_INT_CAST expr
2388 // | T_DOUBLE_CAST expr
2389 // | T_STRING_CAST expr
2390 // | T_ARRAY_CAST expr
2391 // | T_OBJECT_CAST expr
2392 // | T_BOOL_CAST expr
2393 // | T_UNSET_CAST expr
2394 // | T_EXIT exit_expr
2396 // | T_ARRAY '(' array_pair_list ')'
2397 // | '`' encaps_list '`'
2398 // | T_LIST '(' assignment_list ')' '=' expr
2399 // | T_NEW class_name_reference ctor_arguments
2400 // | variable '=' expr
2401 // | variable '=' '&' variable
2402 // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2403 // | variable T_PLUS_EQUAL expr
2404 // | variable T_MINUS_EQUAL expr
2405 // | variable T_MUL_EQUAL expr
2406 // | variable T_DIV_EQUAL expr
2407 // | variable T_CONCAT_EQUAL expr
2408 // | variable T_MOD_EQUAL expr
2409 // | variable T_AND_EQUAL expr
2410 // | variable T_OR_EQUAL expr
2411 // | variable T_XOR_EQUAL expr
2412 // | variable T_SL_EQUAL expr
2413 // | variable T_SR_EQUAL expr
2414 // | rw_variable T_INC
2415 // | rw_variable T_DEC
2416 // | expr T_BOOLEAN_OR expr
2417 // | expr T_BOOLEAN_AND expr
2418 // | expr T_LOGICAL_OR expr
2419 // | expr T_LOGICAL_AND expr
2420 // | expr T_LOGICAL_XOR expr
2432 // | expr T_IS_IDENTICAL expr
2433 // | expr T_IS_NOT_IDENTICAL expr
2434 // | expr T_IS_EQUAL expr
2435 // | expr T_IS_NOT_EQUAL expr
2437 // | expr T_IS_SMALLER_OR_EQUAL expr
2439 // | expr T_IS_GREATER_OR_EQUAL expr
2440 // | expr T_INSTANCEOF class_name_reference
2441 // | expr '?' expr ':' expr
2442 if (Scanner.TRACE) {
2443 System.out.println("TRACE: expr_without_variable() PART 1");
2446 case TokenNameisset:
2447 // T_ISSET '(' isset_variables ')'
2449 if (token != TokenNameLPAREN) {
2450 throwSyntaxError("'(' expected after keyword 'isset'");
2454 if (token != TokenNameRPAREN) {
2455 throwSyntaxError("')' expected after keyword 'isset'");
2459 case TokenNameempty:
2461 if (token != TokenNameLPAREN) {
2462 throwSyntaxError("'(' expected after keyword 'empty'");
2465 variable(true, false);
2466 if (token != TokenNameRPAREN) {
2467 throwSyntaxError("')' expected after keyword 'empty'");
2472 case TokenNameinclude:
2473 case TokenNameinclude_once:
2474 case TokenNamerequire:
2475 case TokenNamerequire_once:
2476 internal_functions_in_yacc();
2479 case TokenNameLPAREN:
2482 if (token == TokenNameRPAREN) {
2485 throwSyntaxError("')' expected in expression.");
2495 // | T_INT_CAST expr
2496 // | T_DOUBLE_CAST expr
2497 // | T_STRING_CAST expr
2498 // | T_ARRAY_CAST expr
2499 // | T_OBJECT_CAST expr
2500 // | T_BOOL_CAST expr
2501 // | T_UNSET_CAST expr
2502 case TokenNameclone:
2503 case TokenNameprint:
2506 case TokenNameMINUS:
2508 case TokenNameTWIDDLE:
2509 case TokenNameintCAST:
2510 case TokenNamedoubleCAST:
2511 case TokenNamestringCAST:
2512 case TokenNamearrayCAST:
2513 case TokenNameobjectCAST:
2514 case TokenNameboolCAST:
2515 case TokenNameunsetCAST:
2525 // | T_STRING_VARNAME
2527 // | T_START_HEREDOC encaps_list T_END_HEREDOC
2528 // | '`' encaps_list '`'
2530 // | '`' encaps_list '`'
2531 // case TokenNameEncapsedString0:
2532 // scanner.encapsedStringStack.push(new Character('`'));
2535 // if (token == TokenNameEncapsedString0) {
2538 // if (token != TokenNameEncapsedString0) {
2539 // throwSyntaxError("\'`\' expected at end of string" + "(Found
2541 // scanner.toStringAction(token) + " )");
2545 // scanner.encapsedStringStack.pop();
2549 // // | '\'' encaps_list '\''
2550 // case TokenNameEncapsedString1:
2551 // scanner.encapsedStringStack.push(new Character('\''));
2554 // exprSourceStart = scanner.getCurrentTokenStartPosition();
2555 // if (token == TokenNameEncapsedString1) {
2557 // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2558 // exprSourceStart, scanner
2559 // .getCurrentTokenEndPosition());
2562 // if (token != TokenNameEncapsedString1) {
2563 // throwSyntaxError("\'\'\' expected at end of string" + "(Found
2565 // + scanner.toStringAction(token) + " )");
2568 // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2569 // exprSourceStart, scanner
2570 // .getCurrentTokenEndPosition());
2574 // scanner.encapsedStringStack.pop();
2578 // //| '"' encaps_list '"'
2579 // case TokenNameEncapsedString2:
2580 // scanner.encapsedStringStack.push(new Character('"'));
2583 // exprSourceStart = scanner.getCurrentTokenStartPosition();
2584 // if (token == TokenNameEncapsedString2) {
2586 // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2587 // exprSourceStart, scanner
2588 // .getCurrentTokenEndPosition());
2591 // if (token != TokenNameEncapsedString2) {
2592 // throwSyntaxError("'\"' expected at end of string" + "(Found
2594 // scanner.toStringAction(token) + " )");
2597 // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2598 // exprSourceStart, scanner
2599 // .getCurrentTokenEndPosition());
2603 // scanner.encapsedStringStack.pop();
2607 case TokenNameStringDoubleQuote:
2608 expression = new StringLiteralDQ(scanner
2609 .getCurrentStringLiteralSource(), scanner
2610 .getCurrentTokenStartPosition(), scanner
2611 .getCurrentTokenEndPosition());
2614 case TokenNameStringSingleQuote:
2615 expression = new StringLiteralSQ(scanner
2616 .getCurrentStringLiteralSource(), scanner
2617 .getCurrentTokenStartPosition(), scanner
2618 .getCurrentTokenEndPosition());
2621 case TokenNameIntegerLiteral:
2622 case TokenNameDoubleLiteral:
2623 case TokenNameStringInterpolated:
2626 case TokenNameCLASS_C:
2627 case TokenNameMETHOD_C:
2628 case TokenNameFUNC_C:
2631 case TokenNameHEREDOC:
2634 case TokenNamearray:
2635 // T_ARRAY '(' array_pair_list ')'
2637 if (token == TokenNameLPAREN) {
2639 if (token == TokenNameRPAREN) {
2644 if (token != TokenNameRPAREN) {
2645 throwSyntaxError("')' or ',' expected after keyword 'array'"
2647 + scanner.toStringAction(token) + ")");
2651 throwSyntaxError("'(' expected after keyword 'array'"
2652 + "(Found token: " + scanner.toStringAction(token)
2657 // | T_LIST '(' assignment_list ')' '=' expr
2659 if (token == TokenNameLPAREN) {
2662 if (token != TokenNameRPAREN) {
2663 throwSyntaxError("')' expected after 'list' keyword.");
2666 if (token != TokenNameEQUAL) {
2667 throwSyntaxError("'=' expected after 'list' keyword.");
2672 throwSyntaxError("'(' expected after 'list' keyword.");
2676 // | T_NEW class_name_reference ctor_arguments
2678 Expression typeRef = class_name_reference();
2680 if (typeRef != null) {
2681 expression = typeRef;
2684 // | T_INC rw_variable
2685 // | T_DEC rw_variable
2686 case TokenNamePLUS_PLUS:
2687 case TokenNameMINUS_MINUS:
2691 // | variable '=' expr
2692 // | variable '=' '&' variable
2693 // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2694 // | variable T_PLUS_EQUAL expr
2695 // | variable T_MINUS_EQUAL expr
2696 // | variable T_MUL_EQUAL expr
2697 // | variable T_DIV_EQUAL expr
2698 // | variable T_CONCAT_EQUAL expr
2699 // | variable T_MOD_EQUAL expr
2700 // | variable T_AND_EQUAL expr
2701 // | variable T_OR_EQUAL expr
2702 // | variable T_XOR_EQUAL expr
2703 // | variable T_SL_EQUAL expr
2704 // | variable T_SR_EQUAL expr
2705 // | rw_variable T_INC
2706 // | rw_variable T_DEC
2707 case TokenNameIdentifier:
2708 case TokenNameVariable:
2709 case TokenNameDOLLAR:
2710 Expression lhs = null;
2711 boolean rememberedVar = false;
2712 if (token == TokenNameIdentifier) {
2713 lhs = identifier(true, true);
2718 lhs = variable(true, true);
2722 if (lhs != null && lhs instanceof FieldReference
2723 && token != TokenNameEQUAL
2724 && token != TokenNamePLUS_EQUAL
2725 && token != TokenNameMINUS_EQUAL
2726 && token != TokenNameMULTIPLY_EQUAL
2727 && token != TokenNameDIVIDE_EQUAL
2728 && token != TokenNameDOT_EQUAL
2729 && token != TokenNameREMAINDER_EQUAL
2730 && token != TokenNameAND_EQUAL
2731 && token != TokenNameOR_EQUAL
2732 && token != TokenNameXOR_EQUAL
2733 && token != TokenNameRIGHT_SHIFT_EQUAL
2734 && token != TokenNameLEFT_SHIFT_EQUAL) {
2735 FieldReference ref = (FieldReference) lhs;
2736 if (!containsVariableSet(ref.token)) {
2737 if (null == initHandler
2738 || initHandler.reportError()) {
2739 problemReporter.uninitializedLocalVariable(
2740 new String(ref.token), ref.sourceStart,
2741 ref.sourceEnd, referenceContext,
2742 compilationUnit.compilationResult);
2744 addVariableSet(ref.token);
2749 case TokenNameEQUAL:
2750 if (lhs != null && lhs instanceof FieldReference) {
2751 addVariableSet(((FieldReference) lhs).token);
2754 if (token == TokenNameAND) {
2756 if (token == TokenNamenew) {
2757 // | variable '=' '&' T_NEW class_name_reference
2760 SingleTypeReference classRef = class_name_reference();
2762 if (classRef != null) {
2764 && lhs instanceof FieldReference) {
2766 // $var = & new Object();
2767 if (fMethodVariables != null) {
2768 VariableInfo lhsInfo = new VariableInfo(
2769 ((FieldReference) lhs).sourceStart);
2770 lhsInfo.reference = classRef;
2771 lhsInfo.typeIdentifier = classRef.token;
2772 fMethodVariables.put(new String(
2773 ((FieldReference) lhs).token),
2775 rememberedVar = true;
2780 Expression rhs = variable(false, false);
2781 if (rhs != null && rhs instanceof FieldReference
2783 && lhs instanceof FieldReference) {
2786 if (fMethodVariables != null) {
2787 VariableInfo rhsInfo = (VariableInfo) fMethodVariables
2788 .get(((FieldReference) rhs).token);
2790 && rhsInfo.reference != null) {
2791 VariableInfo lhsInfo = new VariableInfo(
2792 ((FieldReference) lhs).sourceStart);
2793 lhsInfo.reference = rhsInfo.reference;
2794 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
2795 fMethodVariables.put(new String(
2796 ((FieldReference) lhs).token),
2798 rememberedVar = true;
2804 Expression rhs = expr();
2805 if (lhs != null && lhs instanceof FieldReference) {
2806 if (rhs != null && rhs instanceof FieldReference) {
2809 if (fMethodVariables != null) {
2810 VariableInfo rhsInfo = (VariableInfo) fMethodVariables
2811 .get(((FieldReference) rhs).token);
2813 && rhsInfo.reference != null) {
2814 VariableInfo lhsInfo = new VariableInfo(
2815 ((FieldReference) lhs).sourceStart);
2816 lhsInfo.reference = rhsInfo.reference;
2817 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
2818 fMethodVariables.put(new String(
2819 ((FieldReference) lhs).token),
2821 rememberedVar = true;
2824 } else if (rhs != null
2825 && rhs instanceof SingleTypeReference) {
2827 // $var = new Object();
2828 if (fMethodVariables != null) {
2829 VariableInfo lhsInfo = new VariableInfo(
2830 ((FieldReference) lhs).sourceStart);
2831 lhsInfo.reference = (SingleTypeReference) rhs;
2832 lhsInfo.typeIdentifier = ((SingleTypeReference) rhs).token;
2833 fMethodVariables.put(new String(
2834 ((FieldReference) lhs).token),
2836 rememberedVar = true;
2841 if (rememberedVar == false && lhs != null
2842 && lhs instanceof FieldReference) {
2843 if (fMethodVariables != null) {
2844 VariableInfo lhsInfo = new VariableInfo(
2845 ((FieldReference) lhs).sourceStart);
2846 fMethodVariables.put(new String(
2847 ((FieldReference) lhs).token), lhsInfo);
2851 case TokenNamePLUS_EQUAL:
2852 case TokenNameMINUS_EQUAL:
2853 case TokenNameMULTIPLY_EQUAL:
2854 case TokenNameDIVIDE_EQUAL:
2855 case TokenNameDOT_EQUAL:
2856 case TokenNameREMAINDER_EQUAL:
2857 case TokenNameAND_EQUAL:
2858 case TokenNameOR_EQUAL:
2859 case TokenNameXOR_EQUAL:
2860 case TokenNameRIGHT_SHIFT_EQUAL:
2861 case TokenNameLEFT_SHIFT_EQUAL:
2862 if (lhs != null && lhs instanceof FieldReference) {
2863 addVariableSet(((FieldReference) lhs).token);
2868 case TokenNamePLUS_PLUS:
2869 case TokenNameMINUS_MINUS:
2873 if (!only_variable) {
2874 throwSyntaxError("Variable expression not allowed (found token '"
2875 + scanner.toStringAction(token) + "').");
2883 if (token != TokenNameINLINE_HTML) {
2884 if (token > TokenNameKEYWORD) {
2888 // System.out.println(scanner.getCurrentTokenStartPosition());
2889 // System.out.println(scanner.getCurrentTokenEndPosition());
2891 throwSyntaxError("Error in expression (found token '"
2892 + scanner.toStringAction(token) + "').");
2897 if (Scanner.TRACE) {
2898 System.out.println("TRACE: expr_without_variable() PART 2");
2900 // | expr T_BOOLEAN_OR expr
2901 // | expr T_BOOLEAN_AND expr
2902 // | expr T_LOGICAL_OR expr
2903 // | expr T_LOGICAL_AND expr
2904 // | expr T_LOGICAL_XOR expr
2916 // | expr T_IS_IDENTICAL expr
2917 // | expr T_IS_NOT_IDENTICAL expr
2918 // | expr T_IS_EQUAL expr
2919 // | expr T_IS_NOT_EQUAL expr
2921 // | expr T_IS_SMALLER_OR_EQUAL expr
2923 // | expr T_IS_GREATER_OR_EQUAL expr
2926 case TokenNameOR_OR:
2928 expression = new OR_OR_Expression(expression, expr(), token);
2930 case TokenNameAND_AND:
2932 expression = new AND_AND_Expression(expression, expr(),
2935 case TokenNameEQUAL_EQUAL:
2937 expression = new EqualExpression(expression, expr(), token);
2947 case TokenNameMINUS:
2948 case TokenNameMULTIPLY:
2949 case TokenNameDIVIDE:
2950 case TokenNameREMAINDER:
2951 case TokenNameLEFT_SHIFT:
2952 case TokenNameRIGHT_SHIFT:
2953 case TokenNameEQUAL_EQUAL_EQUAL:
2954 case TokenNameNOT_EQUAL_EQUAL:
2955 case TokenNameNOT_EQUAL:
2957 case TokenNameLESS_EQUAL:
2958 case TokenNameGREATER:
2959 case TokenNameGREATER_EQUAL:
2961 expression = new BinaryExpression(expression, expr(), token);
2963 // | expr T_INSTANCEOF class_name_reference
2964 // | expr '?' expr ':' expr
2965 case TokenNameinstanceof:
2967 TypeReference classRef = class_name_reference();
2968 if (classRef != null) {
2969 expression = new InstanceOfExpression(expression,
2970 classRef, OperatorIds.INSTANCEOF);
2971 expression.sourceStart = exprSourceStart;
2972 expression.sourceEnd = scanner
2973 .getCurrentTokenEndPosition();
2976 case TokenNameQUESTION:
2978 Expression valueIfTrue = expr();
2979 if (token != TokenNameCOLON) {
2980 throwSyntaxError("':' expected in conditional expression.");
2983 Expression valueIfFalse = expr();
2985 expression = new ConditionalExpression(expression,
2986 valueIfTrue, valueIfFalse);
2992 } catch (SyntaxError e) {
2993 // try to find next token after expression with errors:
2994 if (token == TokenNameSEMICOLON) {
2998 if (token == TokenNameRBRACE || token == TokenNameRPAREN
2999 || token == TokenNameRBRACKET) {
3007 private SingleTypeReference class_name_reference() {
3008 // class_name_reference:
3010 // | dynamic_class_name_reference
3011 SingleTypeReference ref = null;
3012 if (Scanner.TRACE) {
3013 System.out.println("TRACE: class_name_reference()");
3015 if (token == TokenNameIdentifier) {
3016 ref = new SingleTypeReference(scanner.getCurrentIdentifierSource(),
3017 scanner.getCurrentTokenStartPosition());
3018 int pos = scanner.currentPosition;
3020 if (token == TokenNamePAAMAYIM_NEKUDOTAYIM) {
3021 // Not terminated by T_STRING, reduce to dynamic_class_name_reference
3022 scanner.currentPosition = pos;
3023 token = TokenNameIdentifier;
3025 dynamic_class_name_reference();
3029 dynamic_class_name_reference();
3034 private void dynamic_class_name_reference() {
3035 // dynamic_class_name_reference:
3036 // base_variable T_OBJECT_OPERATOR object_property
3037 // dynamic_class_name_variable_properties
3039 if (Scanner.TRACE) {
3040 System.out.println("TRACE: dynamic_class_name_reference()");
3042 base_variable(true);
3043 if (token == TokenNameMINUS_GREATER) {
3046 dynamic_class_name_variable_properties();
3050 private void dynamic_class_name_variable_properties() {
3051 // dynamic_class_name_variable_properties:
3052 // dynamic_class_name_variable_properties
3053 // dynamic_class_name_variable_property
3055 if (Scanner.TRACE) {
3057 .println("TRACE: dynamic_class_name_variable_properties()");
3059 while (token == TokenNameMINUS_GREATER) {
3060 dynamic_class_name_variable_property();
3064 private void dynamic_class_name_variable_property() {
3065 // dynamic_class_name_variable_property:
3066 // T_OBJECT_OPERATOR object_property
3067 if (Scanner.TRACE) {
3068 System.out.println("TRACE: dynamic_class_name_variable_property()");
3070 if (token == TokenNameMINUS_GREATER) {
3076 private void ctor_arguments() {
3079 // | '(' function_call_parameter_list ')'
3080 if (token == TokenNameLPAREN) {
3082 if (token == TokenNameRPAREN) {
3086 non_empty_function_call_parameter_list();
3087 if (token != TokenNameRPAREN) {
3088 throwSyntaxError("')' expected in ctor_arguments.");
3094 private void assignment_list() {
3096 // assignment_list ',' assignment_list_element
3097 // | assignment_list_element
3099 assignment_list_element();
3100 if (token != TokenNameCOMMA) {
3107 private void assignment_list_element() {
3108 // assignment_list_element:
3110 // | T_LIST '(' assignment_list ')'
3112 if (token == TokenNameVariable) {
3113 variable(true, false);
3114 } else if (token == TokenNameDOLLAR) {
3115 variable(false, false);
3116 } else if (token == TokenNameIdentifier) {
3117 identifier(true, true);
3119 if (token == TokenNamelist) {
3121 if (token == TokenNameLPAREN) {
3124 if (token != TokenNameRPAREN) {
3125 throwSyntaxError("')' expected after 'list' keyword.");
3129 throwSyntaxError("'(' expected after 'list' keyword.");
3135 private void array_pair_list() {
3138 // | non_empty_array_pair_list possible_comma
3139 non_empty_array_pair_list();
3140 if (token == TokenNameCOMMA) {
3145 private void non_empty_array_pair_list() {
3146 // non_empty_array_pair_list:
3147 // non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr
3148 // | non_empty_array_pair_list ',' expr
3149 // | expr T_DOUBLE_ARROW expr
3151 // | non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
3152 // | non_empty_array_pair_list ',' '&' w_variable
3153 // | expr T_DOUBLE_ARROW '&' w_variable
3156 if (token == TokenNameAND) {
3158 variable(true, false);
3161 if (token == TokenNameAND) {
3163 variable(true, false);
3164 } else if (token == TokenNameEQUAL_GREATER) {
3166 if (token == TokenNameAND) {
3168 variable(true, false);
3174 if (token != TokenNameCOMMA) {
3178 if (token == TokenNameRPAREN) {
3184 // private void variableList() {
3187 // if (token == TokenNameCOMMA) {
3194 private Expression variable_without_objects(boolean lefthandside,
3195 boolean ignoreVar) {
3196 // variable_without_objects:
3197 // reference_variable
3198 // | simple_indirect_reference reference_variable
3199 if (Scanner.TRACE) {
3200 System.out.println("TRACE: variable_without_objects()");
3202 while (token == TokenNameDOLLAR) {
3205 return reference_variable(lefthandside, ignoreVar);
3208 private Expression function_call(boolean lefthandside, boolean ignoreVar) {
3210 // T_STRING '(' function_call_parameter_list ')'
3211 // | class_constant '(' function_call_parameter_list ')'
3212 // | static_member '(' function_call_parameter_list ')'
3213 // | variable_without_objects '(' function_call_parameter_list ')'
3214 char[] defineName = null;
3215 char[] ident = null;
3218 Expression ref = null;
3219 if (Scanner.TRACE) {
3220 System.out.println("TRACE: function_call()");
3222 if (token == TokenNameIdentifier) {
3223 ident = scanner.getCurrentIdentifierSource();
3225 startPos = scanner.getCurrentTokenStartPosition();
3226 endPos = scanner.getCurrentTokenEndPosition();
3229 case TokenNamePAAMAYIM_NEKUDOTAYIM:
3233 if (token == TokenNameIdentifier) {
3238 variable_without_objects(true, false);
3243 ref = variable_without_objects(lefthandside, ignoreVar);
3245 if (token != TokenNameLPAREN) {
3246 if (defineName != null) {
3247 // does this identifier contain only uppercase characters?
3248 if (defineName.length == 3) {
3249 if (defineName[0] == 'd' && defineName[1] == 'i'
3250 && defineName[2] == 'e') {
3253 } else if (defineName.length == 4) {
3254 if (defineName[0] == 't' && defineName[1] == 'r'
3255 && defineName[2] == 'u' && defineName[3] == 'e') {
3257 } else if (defineName[0] == 'n' && defineName[1] == 'u'
3258 && defineName[2] == 'l' && defineName[3] == 'l') {
3261 } else if (defineName.length == 5) {
3262 if (defineName[0] == 'f' && defineName[1] == 'a'
3263 && defineName[2] == 'l' && defineName[3] == 's'
3264 && defineName[4] == 'e') {
3268 if (defineName != null) {
3269 for (int i = 0; i < defineName.length; i++) {
3270 if (Character.isLowerCase(defineName[i])) {
3271 problemReporter.phpUppercaseIdentifierWarning(
3272 startPos, endPos, referenceContext,
3273 compilationUnit.compilationResult);
3281 if (token == TokenNameRPAREN) {
3285 non_empty_function_call_parameter_list();
3286 if (token != TokenNameRPAREN) {
3287 String functionName;
3288 if (ident == null) {
3289 functionName = new String(" ");
3291 functionName = new String(ident);
3293 throwSyntaxError("')' expected in function call ("
3294 + functionName + ").");
3301 private void non_empty_function_call_parameter_list() {
3302 this.non_empty_function_call_parameter_list(null);
3305 // private void function_call_parameter_list() {
3306 // function_call_parameter_list:
3307 // non_empty_function_call_parameter_list { $$ = $1; }
3310 private void non_empty_function_call_parameter_list(String functionName) {
3311 // non_empty_function_call_parameter_list:
3312 // expr_without_variable
3315 // | non_empty_function_call_parameter_list ',' expr_without_variable
3316 // | non_empty_function_call_parameter_list ',' variable
3317 // | non_empty_function_call_parameter_list ',' '&' w_variable
3318 if (Scanner.TRACE) {
3320 .println("TRACE: non_empty_function_call_parameter_list()");
3322 UninitializedVariableHandler initHandler = new UninitializedVariableHandler();
3323 initHandler.setFunctionName(functionName);
3325 initHandler.incrementArgumentCount();
3326 if (token == TokenNameAND) {
3330 // if (token == TokenNameIdentifier || token ==
3331 // TokenNameVariable
3332 // || token == TokenNameDOLLAR) {
3335 expr_without_variable(true, initHandler);
3338 if (token != TokenNameCOMMA) {
3345 private void fully_qualified_class_name() {
3346 if (token == TokenNameIdentifier) {
3349 throwSyntaxError("Class name expected.");
3353 private void static_member() {
3355 // fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM
3356 // variable_without_objects
3357 if (Scanner.TRACE) {
3358 System.out.println("TRACE: static_member()");
3360 fully_qualified_class_name();
3361 if (token != TokenNamePAAMAYIM_NEKUDOTAYIM) {
3362 throwSyntaxError("'::' expected after class name (static_member).");
3365 variable_without_objects(false, false);
3368 private Expression base_variable_with_function_calls(boolean lefthandside,
3369 boolean ignoreVar) {
3370 // base_variable_with_function_calls:
3373 if (Scanner.TRACE) {
3374 System.out.println("TRACE: base_variable_with_function_calls()");
3376 return function_call(lefthandside, ignoreVar);
3379 private Expression base_variable(boolean lefthandside) {
3381 // reference_variable
3382 // | simple_indirect_reference reference_variable
3384 Expression ref = null;
3385 if (Scanner.TRACE) {
3386 System.out.println("TRACE: base_variable()");
3388 if (token == TokenNameIdentifier) {
3391 while (token == TokenNameDOLLAR) {
3394 reference_variable(lefthandside, false);
3399 // private void simple_indirect_reference() {
3400 // // simple_indirect_reference:
3402 // //| simple_indirect_reference '$'
3404 private Expression reference_variable(boolean lefthandside,
3405 boolean ignoreVar) {
3406 // reference_variable:
3407 // reference_variable '[' dim_offset ']'
3408 // | reference_variable '{' expr '}'
3409 // | compound_variable
3410 Expression ref = null;
3411 if (Scanner.TRACE) {
3412 System.out.println("TRACE: reference_variable()");
3414 ref = compound_variable(lefthandside, ignoreVar);
3416 if (token == TokenNameLBRACE) {
3420 if (token != TokenNameRBRACE) {
3421 throwSyntaxError("'}' expected in reference variable.");
3424 } else if (token == TokenNameLBRACKET) {
3425 // To remove "ref = null;" here, is probably better than the
3427 // commented in #1368081 - axelcl
3429 if (token != TokenNameRBRACKET) {
3432 if (token != TokenNameRBRACKET) {
3433 throwSyntaxError("']' expected in reference variable.");
3444 private Expression compound_variable(boolean lefthandside, boolean ignoreVar) {
3445 // compound_variable:
3447 // | '$' '{' expr '}'
3448 if (Scanner.TRACE) {
3449 System.out.println("TRACE: compound_variable()");
3451 if (token == TokenNameVariable) {
3452 if (!lefthandside) {
3453 if (!containsVariableSet()) {
3454 // reportSyntaxError("The local variable " + new
3455 // String(scanner.getCurrentIdentifierSource())
3456 // + " may not have been initialized");
3457 problemReporter.uninitializedLocalVariable(new String(
3458 scanner.getCurrentIdentifierSource()), scanner
3459 .getCurrentTokenStartPosition(), scanner
3460 .getCurrentTokenEndPosition(), referenceContext,
3461 compilationUnit.compilationResult);
3468 FieldReference ref = new FieldReference(scanner
3469 .getCurrentIdentifierSource(), scanner
3470 .getCurrentTokenStartPosition());
3474 // because of simple_indirect_reference
3475 while (token == TokenNameDOLLAR) {
3478 if (token != TokenNameLBRACE) {
3479 reportSyntaxError("'{' expected after compound variable token '$'.");
3484 if (token != TokenNameRBRACE) {
3485 throwSyntaxError("'}' expected after compound variable token '$'.");
3490 } // private void dim_offset() { // // dim_offset: // // /* empty */
3495 private void object_property() {
3498 // | variable_without_objects
3499 if (Scanner.TRACE) {
3500 System.out.println("TRACE: object_property()");
3502 if (token == TokenNameVariable || token == TokenNameDOLLAR) {
3503 variable_without_objects(false, false);
3509 private void object_dim_list() {
3511 // object_dim_list '[' dim_offset ']'
3512 // | object_dim_list '{' expr '}'
3514 if (Scanner.TRACE) {
3515 System.out.println("TRACE: object_dim_list()");
3519 if (token == TokenNameLBRACE) {
3522 if (token != TokenNameRBRACE) {
3523 throwSyntaxError("'}' expected in object_dim_list.");
3526 } else if (token == TokenNameLBRACKET) {
3528 if (token == TokenNameRBRACKET) {
3533 if (token != TokenNameRBRACKET) {
3534 throwSyntaxError("']' expected in object_dim_list.");
3543 private void variable_name() {
3547 if (Scanner.TRACE) {
3548 System.out.println("TRACE: variable_name()");
3550 if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
3551 if (token > TokenNameKEYWORD) {
3552 // TODO show a warning "Keyword used as variable" ?
3556 if (token != TokenNameLBRACE) {
3557 throwSyntaxError("'{' expected in variable name.");
3561 if (token != TokenNameRBRACE) {
3562 throwSyntaxError("'}' expected in variable name.");
3568 private void r_variable() {
3569 variable(false, false);
3572 private void w_variable(boolean lefthandside) {
3573 variable(lefthandside, false);
3576 private void rw_variable() {
3577 variable(false, false);
3580 private Expression variable(boolean lefthandside, boolean ignoreVar) {
3582 // base_variable_with_function_calls T_OBJECT_OPERATOR
3583 // object_property method_or_not variable_properties
3584 // | base_variable_with_function_calls
3585 Expression ref = base_variable_with_function_calls(lefthandside,
3587 if (token == TokenNameMINUS_GREATER) {
3592 variable_properties();
3597 private void variable_properties() {
3598 // variable_properties:
3599 // variable_properties variable_property
3601 while (token == TokenNameMINUS_GREATER) {
3602 variable_property();
3606 private void variable_property() {
3607 // variable_property:
3608 // T_OBJECT_OPERATOR object_property method_or_not
3609 if (Scanner.TRACE) {
3610 System.out.println("TRACE: variable_property()");
3612 if (token == TokenNameMINUS_GREATER) {
3617 throwSyntaxError("'->' expected in variable_property.");
3621 private Expression identifier(boolean lefthandside, boolean ignoreVar) {
3623 // base_variable_with_function_calls T_OBJECT_OPERATOR
3624 // object_property method_or_not variable_properties
3625 // | base_variable_with_function_calls
3627 // Expression ref = function_call(lefthandside, ignoreVar);
3630 // T_STRING '(' function_call_parameter_list ')'
3631 // | class_constant '(' function_call_parameter_list ')'
3632 // | static_member '(' function_call_parameter_list ')'
3633 // | variable_without_objects '(' function_call_parameter_list ')'
3634 char[] defineName = null;
3635 char[] ident = null;
3638 Expression ref = null;
3639 if (Scanner.TRACE) {
3640 System.out.println("TRACE: function_call()");
3642 if (token == TokenNameIdentifier) {
3643 ident = scanner.getCurrentIdentifierSource();
3645 startPos = scanner.getCurrentTokenStartPosition();
3646 endPos = scanner.getCurrentTokenEndPosition();
3649 if (token == TokenNameEQUAL || token == TokenNamePLUS_EQUAL
3650 || token == TokenNameMINUS_EQUAL
3651 || token == TokenNameMULTIPLY_EQUAL
3652 || token == TokenNameDIVIDE_EQUAL
3653 || token == TokenNameDOT_EQUAL
3654 || token == TokenNameREMAINDER_EQUAL
3655 || token == TokenNameAND_EQUAL
3656 || token == TokenNameOR_EQUAL
3657 || token == TokenNameXOR_EQUAL
3658 || token == TokenNameRIGHT_SHIFT_EQUAL
3659 || token == TokenNameLEFT_SHIFT_EQUAL) {
3660 String error = "Assignment operator '"
3661 + scanner.toStringAction(token)
3662 + "' not allowed after identifier '"
3664 + "' (use 'define(...)' to define constants).";
3665 reportSyntaxError(error);
3669 case TokenNamePAAMAYIM_NEKUDOTAYIM:
3673 if (token == TokenNameIdentifier) {
3678 variable_without_objects(true, false);
3683 ref = variable_without_objects(lefthandside, ignoreVar);
3685 if (token != TokenNameLPAREN) {
3686 if (defineName != null) {
3687 // does this identifier contain only uppercase characters?
3688 if (defineName.length == 3) {
3689 if (defineName[0] == 'd' && defineName[1] == 'i'
3690 && defineName[2] == 'e') {
3693 } else if (defineName.length == 4) {
3694 if (defineName[0] == 't' && defineName[1] == 'r'
3695 && defineName[2] == 'u' && defineName[3] == 'e') {
3697 } else if (defineName[0] == 'n' && defineName[1] == 'u'
3698 && defineName[2] == 'l' && defineName[3] == 'l') {
3701 } else if (defineName.length == 5) {
3702 if (defineName[0] == 'f' && defineName[1] == 'a'
3703 && defineName[2] == 'l' && defineName[3] == 's'
3704 && defineName[4] == 'e') {
3708 if (defineName != null) {
3709 for (int i = 0; i < defineName.length; i++) {
3710 if (Character.isLowerCase(defineName[i])) {
3711 problemReporter.phpUppercaseIdentifierWarning(
3712 startPos, endPos, referenceContext,
3713 compilationUnit.compilationResult);
3719 // TODO is this ok ?
3721 // throwSyntaxError("'(' expected in function call.");
3725 if (token == TokenNameRPAREN) {
3729 String functionName;
3730 if (ident == null) {
3731 functionName = new String(" ");
3733 functionName = new String(ident);
3735 non_empty_function_call_parameter_list(functionName);
3736 if (token != TokenNameRPAREN) {
3737 throwSyntaxError("')' expected in function call ("
3738 + functionName + ").");
3743 if (token == TokenNameMINUS_GREATER) {
3748 variable_properties();
3753 private void method_or_not() {
3755 // '(' function_call_parameter_list ')'
3757 if (Scanner.TRACE) {
3758 System.out.println("TRACE: method_or_not()");
3760 if (token == TokenNameLPAREN) {
3762 if (token == TokenNameRPAREN) {
3766 non_empty_function_call_parameter_list();
3767 if (token != TokenNameRPAREN) {
3768 throwSyntaxError("')' expected in method_or_not.");
3774 private void exit_expr() {
3778 if (token != TokenNameLPAREN) {
3782 if (token == TokenNameRPAREN) {
3787 if (token != TokenNameRPAREN) {
3788 throwSyntaxError("')' expected after keyword 'exit'");
3793 // private void encaps_list() {
3794 // // encaps_list encaps_var
3795 // // | encaps_list T_STRING
3796 // // | encaps_list T_NUM_STRING
3797 // // | encaps_list T_ENCAPSED_AND_WHITESPACE
3798 // // | encaps_list T_CHARACTER
3799 // // | encaps_list T_BAD_CHARACTER
3800 // // | encaps_list '['
3801 // // | encaps_list ']'
3802 // // | encaps_list '{'
3803 // // | encaps_list '}'
3804 // // | encaps_list T_OBJECT_OPERATOR
3808 // case TokenNameSTRING:
3811 // case TokenNameLBRACE:
3812 // // scanner.encapsedStringStack.pop();
3815 // case TokenNameRBRACE:
3816 // // scanner.encapsedStringStack.pop();
3819 // case TokenNameLBRACKET:
3820 // // scanner.encapsedStringStack.pop();
3823 // case TokenNameRBRACKET:
3824 // // scanner.encapsedStringStack.pop();
3827 // case TokenNameMINUS_GREATER:
3828 // // scanner.encapsedStringStack.pop();
3831 // case TokenNameVariable:
3832 // case TokenNameDOLLAR_LBRACE:
3833 // case TokenNameLBRACE_DOLLAR:
3837 // char encapsedChar = ((Character)
3838 // scanner.encapsedStringStack.peek()).charValue();
3839 // if (encapsedChar == '$') {
3840 // scanner.encapsedStringStack.pop();
3841 // encapsedChar = ((Character)
3842 // scanner.encapsedStringStack.peek()).charValue();
3843 // switch (encapsedChar) {
3845 // if (token == TokenNameEncapsedString0) {
3848 // token = TokenNameSTRING;
3851 // if (token == TokenNameEncapsedString1) {
3854 // token = TokenNameSTRING;
3857 // if (token == TokenNameEncapsedString2) {
3860 // token = TokenNameSTRING;
3869 // private void encaps_var() {
3871 // // | T_VARIABLE '[' encaps_var_offset ']'
3872 // // | T_VARIABLE T_OBJECT_OPERATOR T_STRING
3873 // // | T_DOLLAR_OPEN_CURLY_BRACES expr '}'
3874 // // | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
3875 // // | T_CURLY_OPEN variable '}'
3877 // case TokenNameVariable:
3879 // if (token == TokenNameLBRACKET) {
3881 // expr(); //encaps_var_offset();
3882 // if (token != TokenNameRBRACKET) {
3883 // throwSyntaxError("']' expected after variable.");
3885 // // scanner.encapsedStringStack.pop();
3888 // } else if (token == TokenNameMINUS_GREATER) {
3890 // if (token != TokenNameIdentifier) {
3891 // throwSyntaxError("Identifier expected after '->'.");
3893 // // scanner.encapsedStringStack.pop();
3897 // // // scanner.encapsedStringStack.pop();
3898 // // int tempToken = TokenNameSTRING;
3899 // // if (!scanner.encapsedStringStack.isEmpty()
3900 // // && (token == TokenNameEncapsedString0
3901 // // || token == TokenNameEncapsedString1
3902 // // || token == TokenNameEncapsedString2 || token ==
3903 // // TokenNameERROR)) {
3904 // // char encapsedChar = ((Character)
3905 // // scanner.encapsedStringStack.peek())
3907 // // switch (token) {
3908 // // case TokenNameEncapsedString0 :
3909 // // if (encapsedChar == '`') {
3910 // // tempToken = TokenNameEncapsedString0;
3913 // // case TokenNameEncapsedString1 :
3914 // // if (encapsedChar == '\'') {
3915 // // tempToken = TokenNameEncapsedString1;
3918 // // case TokenNameEncapsedString2 :
3919 // // if (encapsedChar == '"') {
3920 // // tempToken = TokenNameEncapsedString2;
3923 // // case TokenNameERROR :
3924 // // if (scanner.source[scanner.currentPosition - 1] == '\\') {
3925 // // scanner.currentPosition--;
3926 // // getNextToken();
3931 // // token = tempToken;
3934 // case TokenNameDOLLAR_LBRACE:
3936 // if (token == TokenNameDOLLAR_LBRACE) {
3938 // } else if (token == TokenNameIdentifier) {
3940 // if (token == TokenNameLBRACKET) {
3942 // // if (token == TokenNameRBRACKET) {
3943 // // getNextToken();
3946 // if (token != TokenNameRBRACKET) {
3947 // throwSyntaxError("']' expected after '${'.");
3955 // if (token != TokenNameRBRACE) {
3956 // throwSyntaxError("'}' expected.");
3960 // case TokenNameLBRACE_DOLLAR:
3962 // if (token == TokenNameLBRACE_DOLLAR) {
3964 // } else if (token == TokenNameIdentifier || token > TokenNameKEYWORD) {
3966 // if (token == TokenNameLBRACKET) {
3968 // // if (token == TokenNameRBRACKET) {
3969 // // getNextToken();
3972 // if (token != TokenNameRBRACKET) {
3973 // throwSyntaxError("']' expected.");
3977 // } else if (token == TokenNameMINUS_GREATER) {
3979 // if (token != TokenNameIdentifier && token != TokenNameVariable) {
3980 // throwSyntaxError("String or Variable token expected.");
3983 // if (token == TokenNameLBRACKET) {
3985 // // if (token == TokenNameRBRACKET) {
3986 // // getNextToken();
3989 // if (token != TokenNameRBRACKET) {
3990 // throwSyntaxError("']' expected after '${'.");
3996 // // if (token != TokenNameRBRACE) {
3997 // // throwSyntaxError("'}' expected after '{$'.");
3999 // // // scanner.encapsedStringStack.pop();
4000 // // getNextToken();
4003 // if (token != TokenNameRBRACE) {
4004 // throwSyntaxError("'}' expected.");
4006 // // scanner.encapsedStringStack.pop();
4013 // private void encaps_var_offset() {
4015 // // | T_NUM_STRING
4018 // case TokenNameSTRING:
4021 // case TokenNameIntegerLiteral:
4024 // case TokenNameVariable:
4027 // case TokenNameIdentifier:
4031 // throwSyntaxError("Variable or String token expected.");
4036 private void internal_functions_in_yacc() {
4039 // case TokenNameisset:
4040 // // T_ISSET '(' isset_variables ')'
4042 // if (token != TokenNameLPAREN) {
4043 // throwSyntaxError("'(' expected after keyword 'isset'");
4046 // isset_variables();
4047 // if (token != TokenNameRPAREN) {
4048 // throwSyntaxError("')' expected after keyword 'isset'");
4052 // case TokenNameempty:
4053 // // T_EMPTY '(' variable ')'
4055 // if (token != TokenNameLPAREN) {
4056 // throwSyntaxError("'(' expected after keyword 'empty'");
4060 // if (token != TokenNameRPAREN) {
4061 // throwSyntaxError("')' expected after keyword 'empty'");
4065 case TokenNameinclude:
4067 checkFileName(token);
4069 case TokenNameinclude_once:
4070 // T_INCLUDE_ONCE expr
4071 checkFileName(token);
4074 // T_EVAL '(' expr ')'
4076 if (token != TokenNameLPAREN) {
4077 throwSyntaxError("'(' expected after keyword 'eval'");
4081 if (token != TokenNameRPAREN) {
4082 throwSyntaxError("')' expected after keyword 'eval'");
4086 case TokenNamerequire:
4088 checkFileName(token);
4090 case TokenNamerequire_once:
4091 // T_REQUIRE_ONCE expr
4092 checkFileName(token);
4098 * Parse and check the include file name
4100 * @param includeToken
4102 private void checkFileName(int includeToken) {
4103 // <include-token> expr
4104 int start = scanner.getCurrentTokenStartPosition();
4105 boolean hasLPAREN = false;
4107 if (token == TokenNameLPAREN) {
4111 Expression expression = expr();
4113 if (token == TokenNameRPAREN) {
4116 throwSyntaxError("')' expected for keyword '"
4117 + scanner.toStringAction(includeToken) + "'");
4120 char[] currTokenSource = scanner.getCurrentTokenSource(start);
4122 if (scanner.compilationUnit != null) {
4123 IResource resource = scanner.compilationUnit.getResource();
4124 if (resource != null && resource instanceof IFile) {
4125 file = (IFile) resource;
4129 tokens = new char[1][];
4130 tokens[0] = currTokenSource;
4132 ImportReference impt = new ImportReference(tokens, currTokenSource,
4133 start, scanner.getCurrentTokenEndPosition(), false);
4134 impt.declarationSourceEnd = impt.sourceEnd;
4135 impt.declarationEnd = impt.declarationSourceEnd;
4136 // endPosition is just before the ;
4137 impt.declarationSourceStart = start;
4138 includesList.add(impt);
4140 if (expression instanceof StringLiteral) {
4141 StringLiteral literal = (StringLiteral) expression;
4142 char[] includeName = literal.source();
4143 if (includeName.length == 0) {
4144 reportSyntaxError("Empty filename after keyword '"
4145 + scanner.toStringAction(includeToken) + "'",
4146 literal.sourceStart, literal.sourceStart + 1);
4148 String includeNameString = new String(includeName);
4149 if (literal instanceof StringLiteralDQ) {
4150 if (includeNameString.indexOf('$') >= 0) {
4151 // assuming that the filename contains a variable => no
4156 if (includeNameString.startsWith("http://")) {
4157 // assuming external include location
4161 // check the filename:
4162 // System.out.println(new
4163 // String(compilationUnit.getFileName())+" - "+
4164 // expression.toStringExpression());
4165 IProject project = file.getProject();
4166 if (project != null) {
4167 IPath path = PHPFileUtil.determineFilePath(
4168 includeNameString, file, project);
4171 // SyntaxError: "File: << >> doesn't exist in project."
4172 String[] args = { expression.toStringExpression(),
4173 project.getFullPath().toString() };
4174 problemReporter.phpIncludeNotExistWarning(args,
4175 literal.sourceStart, literal.sourceEnd,
4177 compilationUnit.compilationResult);
4180 String filePath = path.toString();
4181 String ext = file.getRawLocation()
4182 .getFileExtension();
4183 int fileExtensionLength = ext == null ? 0 : ext
4186 IFile f = PHPFileUtil.createFile(path, project);
4188 impt.tokens = CharOperation.splitOn('/', filePath
4189 .toCharArray(), 0, filePath.length()
4190 - fileExtensionLength);
4192 } catch (Exception e) {
4193 // the file is outside of the workspace
4201 private void isset_variables() {
4203 // | isset_variables ','
4204 if (token == TokenNameRPAREN) {
4205 throwSyntaxError("Variable expected after keyword 'isset'");
4208 variable(true, false);
4209 if (token == TokenNameCOMMA) {
4217 private boolean common_scalar() {
4221 // | T_CONSTANT_ENCAPSED_STRING
4228 case TokenNameIntegerLiteral:
4231 case TokenNameDoubleLiteral:
4234 case TokenNameStringDoubleQuote:
4237 case TokenNameStringSingleQuote:
4240 case TokenNameStringInterpolated:
4249 case TokenNameCLASS_C:
4252 case TokenNameMETHOD_C:
4255 case TokenNameFUNC_C:
4262 private void scalar() {
4265 // | T_STRING_VARNAME
4268 // | '"' encaps_list '"'
4269 // | '\'' encaps_list '\''
4270 // | T_START_HEREDOC encaps_list T_END_HEREDOC
4271 throwSyntaxError("Not yet implemented (scalar).");
4274 private void static_scalar() {
4275 // static_scalar: /* compile-time evaluated scalars */
4278 // | '+' static_scalar
4279 // | '-' static_scalar
4280 // | T_ARRAY '(' static_array_pair_list ')'
4281 // | static_class_constant
4282 if (common_scalar()) {
4286 case TokenNameIdentifier:
4288 // static_class_constant:
4289 // T_STRING T_PAAMAYIM_NEKUDOTAYIM T_STRING
4290 if (token == TokenNamePAAMAYIM_NEKUDOTAYIM) {
4292 if (token == TokenNameIdentifier) {
4295 throwSyntaxError("Identifier expected after '::' operator.");
4299 case TokenNameEncapsedString0:
4301 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4302 while (scanner.currentCharacter != '`') {
4303 if (scanner.currentCharacter == '\\') {
4304 scanner.currentPosition++;
4306 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4309 } catch (IndexOutOfBoundsException e) {
4310 throwSyntaxError("'`' expected at end of static string.");
4313 // case TokenNameEncapsedString1:
4315 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4316 // while (scanner.currentCharacter != '\'') {
4317 // if (scanner.currentCharacter == '\\') {
4318 // scanner.currentPosition++;
4320 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4323 // } catch (IndexOutOfBoundsException e) {
4324 // throwSyntaxError("'\'' expected at end of static string.");
4327 // case TokenNameEncapsedString2:
4329 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4330 // while (scanner.currentCharacter != '"') {
4331 // if (scanner.currentCharacter == '\\') {
4332 // scanner.currentPosition++;
4334 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4337 // } catch (IndexOutOfBoundsException e) {
4338 // throwSyntaxError("'\"' expected at end of static string.");
4341 case TokenNameStringSingleQuote:
4344 case TokenNameStringDoubleQuote:
4351 case TokenNameMINUS:
4355 case TokenNamearray:
4357 if (token != TokenNameLPAREN) {
4358 throwSyntaxError("'(' expected after keyword 'array'");
4361 if (token == TokenNameRPAREN) {
4365 non_empty_static_array_pair_list();
4366 if (token != TokenNameRPAREN) {
4367 throwSyntaxError("')' or ',' expected after keyword 'array'");
4371 // case TokenNamenull :
4374 // case TokenNamefalse :
4377 // case TokenNametrue :
4381 throwSyntaxError("Static scalar/constant expected.");
4385 private void non_empty_static_array_pair_list() {
4386 // non_empty_static_array_pair_list:
4387 // non_empty_static_array_pair_list ',' static_scalar T_DOUBLE_ARROW
4389 // | non_empty_static_array_pair_list ',' static_scalar
4390 // | static_scalar T_DOUBLE_ARROW static_scalar
4394 if (token == TokenNameEQUAL_GREATER) {
4398 if (token != TokenNameCOMMA) {
4402 if (token == TokenNameRPAREN) {
4408 // public void reportSyntaxError() { //int act, int currentKind, int
4409 // // stateStackTop) {
4410 // /* remember current scanner position */
4411 // int startPos = scanner.startPosition;
4412 // int currentPos = scanner.currentPosition;
4414 // this.checkAndReportBracketAnomalies(problemReporter());
4415 // /* reset scanner where it was */
4416 // scanner.startPosition = startPos;
4417 // scanner.currentPosition = currentPos;
4420 public static final int RoundBracket = 0;
4422 public static final int SquareBracket = 1;
4424 public static final int CurlyBracket = 2;
4426 public static final int BracketKinds = 3;
4428 protected int[] nestedMethod; // the ptr is nestedType
4430 protected int nestedType, dimensions;
4432 // variable set stack
4433 final static int VariableStackIncrement = 10;
4435 HashMap fTypeVariables = null;
4437 HashMap fMethodVariables = null;
4439 ArrayList fStackUnassigned = new ArrayList();
4442 final static int AstStackIncrement = 100;
4444 protected int astPtr;
4446 protected ASTNode[] astStack = new ASTNode[AstStackIncrement];
4448 protected int astLengthPtr;
4450 protected int[] astLengthStack;
4452 ASTNode[] noAstNodes = new ASTNode[AstStackIncrement];
4454 public CompilationUnitDeclaration compilationUnit; /*
4459 protected ReferenceContext referenceContext;
4461 protected ProblemReporter problemReporter;
4463 protected CompilerOptions options;
4465 private ArrayList includesList;
4467 // protected CompilationResult compilationResult;
4469 * Returns this parser's problem reporter initialized with its reference
4470 * context. Also it is assumed that a problem is going to be reported, so
4471 * initializes the compilation result's line positions.
4473 public ProblemReporter problemReporter() {
4474 if (scanner.recordLineSeparator) {
4475 compilationUnit.compilationResult.lineSeparatorPositions = scanner
4478 problemReporter.referenceContext = referenceContext;
4479 return problemReporter;
4483 * Reconsider the entire source looking for inconsistencies in {} () []
4485 // public boolean checkAndReportBracketAnomalies(ProblemReporter
4486 // problemReporter) {
4487 // scanner.wasAcr = false;
4488 // boolean anomaliesDetected = false;
4490 // char[] source = scanner.source;
4491 // int[] leftCount = { 0, 0, 0 };
4492 // int[] rightCount = { 0, 0, 0 };
4493 // int[] depths = { 0, 0, 0 };
4494 // int[][] leftPositions = new int[][] { new int[10], new int[10], new
4497 // int[][] leftDepths = new int[][] { new int[10], new int[10], new int[10]
4499 // int[][] rightPositions = new int[][] { new int[10], new int[10], new
4501 // int[][] rightDepths = new int[][] { new int[10], new int[10], new int[10]
4503 // scanner.currentPosition = scanner.initialPosition; //starting
4505 // // (first-zero-based
4507 // while (scanner.currentPosition < scanner.eofPosition) { //loop for
4512 // // ---------Consume white space and handles
4513 // // startPosition---------
4514 // boolean isWhiteSpace;
4516 // scanner.startPosition = scanner.currentPosition;
4517 // // if (((scanner.currentCharacter =
4518 // // source[scanner.currentPosition++]) == '\\') &&
4519 // // (source[scanner.currentPosition] == 'u')) {
4520 // // isWhiteSpace = scanner.jumpOverUnicodeWhiteSpace();
4522 // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
4523 // (scanner.currentCharacter == '\n'))) {
4524 // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
4525 // // only record line positions we have not
4527 // scanner.pushLineSeparator();
4530 // isWhiteSpace = CharOperation.isWhitespace(scanner.currentCharacter);
4532 // } while (isWhiteSpace && (scanner.currentPosition <
4533 // scanner.eofPosition));
4534 // // -------consume token until } is found---------
4535 // switch (scanner.currentCharacter) {
4537 // int index = leftCount[CurlyBracket]++;
4538 // if (index == leftPositions[CurlyBracket].length) {
4539 // System.arraycopy(leftPositions[CurlyBracket], 0,
4540 // (leftPositions[CurlyBracket] = new int[index * 2]), 0, index);
4541 // System.arraycopy(leftDepths[CurlyBracket], 0, (leftDepths[CurlyBracket] =
4542 // new int[index * 2]), 0, index);
4544 // leftPositions[CurlyBracket][index] = scanner.startPosition;
4545 // leftDepths[CurlyBracket][index] = depths[CurlyBracket]++;
4549 // int index = rightCount[CurlyBracket]++;
4550 // if (index == rightPositions[CurlyBracket].length) {
4551 // System.arraycopy(rightPositions[CurlyBracket], 0,
4552 // (rightPositions[CurlyBracket] = new int[index * 2]), 0, index);
4553 // System.arraycopy(rightDepths[CurlyBracket], 0, (rightDepths[CurlyBracket]
4555 // new int[index * 2]), 0, index);
4557 // rightPositions[CurlyBracket][index] = scanner.startPosition;
4558 // rightDepths[CurlyBracket][index] = --depths[CurlyBracket];
4562 // int index = leftCount[RoundBracket]++;
4563 // if (index == leftPositions[RoundBracket].length) {
4564 // System.arraycopy(leftPositions[RoundBracket], 0,
4565 // (leftPositions[RoundBracket] = new int[index * 2]), 0, index);
4566 // System.arraycopy(leftDepths[RoundBracket], 0, (leftDepths[RoundBracket] =
4567 // new int[index * 2]), 0, index);
4569 // leftPositions[RoundBracket][index] = scanner.startPosition;
4570 // leftDepths[RoundBracket][index] = depths[RoundBracket]++;
4574 // int index = rightCount[RoundBracket]++;
4575 // if (index == rightPositions[RoundBracket].length) {
4576 // System.arraycopy(rightPositions[RoundBracket], 0,
4577 // (rightPositions[RoundBracket] = new int[index * 2]), 0, index);
4578 // System.arraycopy(rightDepths[RoundBracket], 0, (rightDepths[RoundBracket]
4580 // new int[index * 2]), 0, index);
4582 // rightPositions[RoundBracket][index] = scanner.startPosition;
4583 // rightDepths[RoundBracket][index] = --depths[RoundBracket];
4587 // int index = leftCount[SquareBracket]++;
4588 // if (index == leftPositions[SquareBracket].length) {
4589 // System.arraycopy(leftPositions[SquareBracket], 0,
4590 // (leftPositions[SquareBracket] = new int[index * 2]), 0, index);
4591 // System.arraycopy(leftDepths[SquareBracket], 0, (leftDepths[SquareBracket]
4593 // new int[index * 2]), 0, index);
4595 // leftPositions[SquareBracket][index] = scanner.startPosition;
4596 // leftDepths[SquareBracket][index] = depths[SquareBracket]++;
4600 // int index = rightCount[SquareBracket]++;
4601 // if (index == rightPositions[SquareBracket].length) {
4602 // System.arraycopy(rightPositions[SquareBracket], 0,
4603 // (rightPositions[SquareBracket] = new int[index * 2]), 0, index);
4604 // System.arraycopy(rightDepths[SquareBracket], 0,
4605 // (rightDepths[SquareBracket]
4606 // = new int[index * 2]), 0, index);
4608 // rightPositions[SquareBracket][index] = scanner.startPosition;
4609 // rightDepths[SquareBracket][index] = --depths[SquareBracket];
4613 // if (scanner.getNextChar('\\')) {
4614 // scanner.scanEscapeCharacter();
4615 // } else { // consume next character
4616 // scanner.unicodeAsBackSlash = false;
4617 // // if (((scanner.currentCharacter =
4618 // // source[scanner.currentPosition++]) ==
4620 // // (source[scanner.currentPosition] ==
4622 // // scanner.getNextUnicodeChar();
4624 // if (scanner.withoutUnicodePtr != 0) {
4625 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4626 // scanner.currentCharacter;
4630 // scanner.getNextChar('\'');
4634 // // consume next character
4635 // scanner.unicodeAsBackSlash = false;
4636 // // if (((scanner.currentCharacter =
4637 // // source[scanner.currentPosition++]) == '\\') &&
4638 // // (source[scanner.currentPosition] == 'u')) {
4639 // // scanner.getNextUnicodeChar();
4641 // if (scanner.withoutUnicodePtr != 0) {
4642 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4643 // scanner.currentCharacter;
4646 // while (scanner.currentCharacter != '"') {
4647 // if (scanner.currentCharacter == '\r') {
4648 // if (source[scanner.currentPosition] == '\n')
4649 // scanner.currentPosition++;
4650 // break; // the string cannot go further that
4653 // if (scanner.currentCharacter == '\n') {
4654 // break; // the string cannot go further that
4657 // if (scanner.currentCharacter == '\\') {
4658 // scanner.scanEscapeCharacter();
4660 // // consume next character
4661 // scanner.unicodeAsBackSlash = false;
4662 // // if (((scanner.currentCharacter =
4663 // // source[scanner.currentPosition++]) == '\\')
4664 // // && (source[scanner.currentPosition] == 'u'))
4666 // // scanner.getNextUnicodeChar();
4668 // if (scanner.withoutUnicodePtr != 0) {
4669 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4670 // scanner.currentCharacter;
4677 // if ((test = scanner.getNextChar('/', '*')) == 0) { //line
4679 // //get the next char
4680 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4682 // && (source[scanner.currentPosition] == 'u')) {
4683 // //-------------unicode traitement
4685 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4686 // scanner.currentPosition++;
4687 // while (source[scanner.currentPosition] == 'u') {
4688 // scanner.currentPosition++;
4690 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4692 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
4695 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
4698 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
4700 // || c4 < 0) { //error
4704 // scanner.currentCharacter = 'A';
4705 // } //something different from \n and \r
4707 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4710 // while (scanner.currentCharacter != '\r' && scanner.currentCharacter !=
4712 // //get the next char
4713 // scanner.startPosition = scanner.currentPosition;
4714 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4716 // && (source[scanner.currentPosition] == 'u')) {
4717 // //-------------unicode traitement
4719 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4720 // scanner.currentPosition++;
4721 // while (source[scanner.currentPosition] == 'u') {
4722 // scanner.currentPosition++;
4724 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4726 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
4729 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
4732 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
4734 // || c4 < 0) { //error
4738 // scanner.currentCharacter = 'A';
4739 // } //something different from \n
4742 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4746 // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
4747 // (scanner.currentCharacter == '\n'))) {
4748 // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
4749 // // only record line positions we
4750 // // have not recorded yet
4751 // scanner.pushLineSeparator();
4752 // if (this.scanner.taskTags != null) {
4753 // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
4755 // .getCurrentTokenEndPosition());
4761 // if (test > 0) { //traditional and annotation
4763 // boolean star = false;
4764 // // consume next character
4765 // scanner.unicodeAsBackSlash = false;
4766 // // if (((scanner.currentCharacter =
4767 // // source[scanner.currentPosition++]) ==
4769 // // (source[scanner.currentPosition] ==
4771 // // scanner.getNextUnicodeChar();
4773 // if (scanner.withoutUnicodePtr != 0) {
4774 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
4775 // scanner.currentCharacter;
4778 // if (scanner.currentCharacter == '*') {
4781 // //get the next char
4782 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4784 // && (source[scanner.currentPosition] == 'u')) {
4785 // //-------------unicode traitement
4787 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4788 // scanner.currentPosition++;
4789 // while (source[scanner.currentPosition] == 'u') {
4790 // scanner.currentPosition++;
4792 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4794 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
4797 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
4800 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
4802 // || c4 < 0) { //error
4806 // scanner.currentCharacter = 'A';
4807 // } //something different from * and /
4809 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4812 // //loop until end of comment */
4813 // while ((scanner.currentCharacter != '/') || (!star)) {
4814 // star = scanner.currentCharacter == '*';
4816 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
4818 // && (source[scanner.currentPosition] == 'u')) {
4819 // //-------------unicode traitement
4821 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
4822 // scanner.currentPosition++;
4823 // while (source[scanner.currentPosition] == 'u') {
4824 // scanner.currentPosition++;
4826 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
4828 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
4831 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
4834 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
4836 // || c4 < 0) { //error
4840 // scanner.currentCharacter = 'A';
4841 // } //something different from * and
4844 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
4848 // if (this.scanner.taskTags != null) {
4849 // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
4850 // this.scanner.getCurrentTokenEndPosition());
4857 // if (Scanner.isPHPIdentifierStart(scanner.currentCharacter)) {
4858 // scanner.scanIdentifierOrKeyword(false);
4861 // if (Character.isDigit(scanner.currentCharacter)) {
4862 // scanner.scanNumber(false);
4866 // //-----------------end switch while
4867 // // try--------------------
4868 // } catch (IndexOutOfBoundsException e) {
4869 // break; // read until EOF
4870 // } catch (InvalidInputException e) {
4871 // return false; // no clue
4874 // if (scanner.recordLineSeparator) {
4875 // compilationUnit.compilationResult.lineSeparatorPositions =
4876 // scanner.getLineEnds();
4878 // // check placement anomalies against other kinds of brackets
4879 // for (int kind = 0; kind < BracketKinds; kind++) {
4880 // for (int leftIndex = leftCount[kind] - 1; leftIndex >= 0; leftIndex--) {
4881 // int start = leftPositions[kind][leftIndex]; // deepest
4883 // // find matching closing bracket
4884 // int depth = leftDepths[kind][leftIndex];
4886 // for (int i = 0; i < rightCount[kind]; i++) {
4887 // int pos = rightPositions[kind][i];
4888 // // want matching bracket further in source with same
4890 // if ((pos > start) && (depth == rightDepths[kind][i])) {
4895 // if (end < 0) { // did not find a good closing match
4896 // problemReporter.unmatchedBracket(start, referenceContext,
4897 // compilationUnit.compilationResult);
4900 // // check if even number of opening/closing other brackets
4901 // // in between this pair of brackets
4903 // for (int otherKind = 0; (balance == 0) && (otherKind < BracketKinds);
4905 // for (int i = 0; i < leftCount[otherKind]; i++) {
4906 // int pos = leftPositions[otherKind][i];
4907 // if ((pos > start) && (pos < end))
4910 // for (int i = 0; i < rightCount[otherKind]; i++) {
4911 // int pos = rightPositions[otherKind][i];
4912 // if ((pos > start) && (pos < end))
4915 // if (balance != 0) {
4916 // problemReporter.unmatchedBracket(start, referenceContext,
4917 // compilationUnit.compilationResult); //bracket
4923 // // too many opening brackets ?
4924 // for (int i = rightCount[kind]; i < leftCount[kind]; i++) {
4925 // anomaliesDetected = true;
4926 // problemReporter.unmatchedBracket(leftPositions[kind][leftCount[kind] - i
4928 // 1], referenceContext,
4929 // compilationUnit.compilationResult);
4931 // // too many closing brackets ?
4932 // for (int i = leftCount[kind]; i < rightCount[kind]; i++) {
4933 // anomaliesDetected = true;
4934 // problemReporter.unmatchedBracket(rightPositions[kind][i],
4935 // referenceContext,
4936 // compilationUnit.compilationResult);
4938 // if (anomaliesDetected)
4941 // return anomaliesDetected;
4942 // } catch (ArrayStoreException e) { // jdk1.2.2 jit bug
4943 // return anomaliesDetected;
4944 // } catch (NullPointerException e) { // jdk1.2.2 jit bug
4945 // return anomaliesDetected;
4948 protected void pushOnAstLengthStack(int pos) {
4950 astLengthStack[++astLengthPtr] = pos;
4951 } catch (IndexOutOfBoundsException e) {
4952 int oldStackLength = astLengthStack.length;
4953 int[] oldPos = astLengthStack;
4954 astLengthStack = new int[oldStackLength + StackIncrement];
4955 System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
4956 astLengthStack[astLengthPtr] = pos;
4960 protected void pushOnAstStack(ASTNode node) {
4962 * add a new obj on top of the ast stack
4965 astStack[++astPtr] = node;
4966 } catch (IndexOutOfBoundsException e) {
4967 int oldStackLength = astStack.length;
4968 ASTNode[] oldStack = astStack;
4969 astStack = new ASTNode[oldStackLength + AstStackIncrement];
4970 System.arraycopy(oldStack, 0, astStack, 0, oldStackLength);
4971 astPtr = oldStackLength;
4972 astStack[astPtr] = node;
4975 astLengthStack[++astLengthPtr] = 1;
4976 } catch (IndexOutOfBoundsException e) {
4977 int oldStackLength = astLengthStack.length;
4978 int[] oldPos = astLengthStack;
4979 astLengthStack = new int[oldStackLength + AstStackIncrement];
4980 System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
4981 astLengthStack[astLengthPtr] = 1;
4985 protected void resetModifiers() {
4986 this.modifiers = AccDefault;
4987 this.modifiersSourceStart = -1; // <-- see comment into
4988 // modifiersFlag(int)
4989 this.scanner.commentPtr = -1;
4992 protected void consumePackageDeclarationName(IFile file) {
4993 // create a package name similar to java package names
4995 //String projectPath = ProjectPrefUtil.getDocumentRoot(file.getProject())
4997 String filePath = file.getFullPath().toString();
4999 String ext = file.getFileExtension();
5000 int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
5001 ImportReference impt;
5004 /*if (filePath.startsWith(projectPath)) {
5005 tokens = CharOperation.splitOn('/', filePath.toCharArray(),
5006 projectPath.length() + 1, filePath.length()
5007 - fileExtensionLength);
5009 String name = file.getName();
5010 tokens = new char[1][];
5011 tokens[0] = name.substring(0, name.length() - fileExtensionLength)
5015 this.compilationUnit.currentPackage = impt = new ImportReference(
5016 tokens, new char[0], 0, 0, true);
5018 impt.declarationSourceStart = 0;
5019 impt.declarationSourceEnd = 0;
5020 impt.declarationEnd = 0;
5021 // endPosition is just before the ;
5025 public final static String[] GLOBALS = { "$this", "$_COOKIE", "$_ENV",
5026 "$_FILES", "$_GET", "$GLOBALS", "$_POST", "$_REQUEST", "$_SESSION",
5032 private void pushFunctionVariableSet() {
5033 HashSet set = new HashSet();
5034 if (fStackUnassigned.isEmpty()) {
5035 for (int i = 0; i < GLOBALS.length; i++) {
5036 set.add(GLOBALS[i]);
5039 fStackUnassigned.add(set);
5042 private void pushIfVariableSet() {
5043 if (!fStackUnassigned.isEmpty()) {
5044 HashSet set = new HashSet();
5045 fStackUnassigned.add(set);
5049 private HashSet removeIfVariableSet() {
5050 if (!fStackUnassigned.isEmpty()) {
5051 return (HashSet) fStackUnassigned
5052 .remove(fStackUnassigned.size() - 1);
5058 * Returns the <i>set of assigned variables </i> returns null if no Set is
5059 * defined at the current scanner position
5061 private HashSet peekVariableSet() {
5062 if (!fStackUnassigned.isEmpty()) {
5063 return (HashSet) fStackUnassigned.get(fStackUnassigned.size() - 1);
5069 * add the current identifier source to the <i>set of assigned variables
5074 private void addVariableSet(HashSet set) {
5076 set.add(new String(scanner.getCurrentTokenSource()));
5081 * add the current identifier source to the <i>set of assigned variables
5085 private void addVariableSet() {
5086 HashSet set = peekVariableSet();
5088 set.add(new String(scanner.getCurrentTokenSource()));
5093 * add the current identifier source to the <i>set of assigned variables
5097 private void addVariableSet(char[] token) {
5098 HashSet set = peekVariableSet();
5100 set.add(new String(token));
5105 * check if the current identifier source is in the <i>set of assigned
5106 * variables </i> Returns true, if no set is defined for the current scanner
5110 private boolean containsVariableSet() {
5111 return containsVariableSet(scanner.getCurrentTokenSource());
5114 private boolean containsVariableSet(char[] token) {
5116 if (!fStackUnassigned.isEmpty()) {
5118 String str = new String(token);
5119 for (int i = 0; i < fStackUnassigned.size(); i++) {
5120 set = (HashSet) fStackUnassigned.get(i);
5121 if (set.contains(str)) {