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.core.compiler.ITerminalSymbols.TokenName;
18 import net.sourceforge.phpdt.internal.compiler.ast.AND_AND_Expression;
19 import net.sourceforge.phpdt.internal.compiler.ast.ASTNode;
20 import net.sourceforge.phpdt.internal.compiler.ast.AbstractMethodDeclaration;
21 import net.sourceforge.phpdt.internal.compiler.ast.BinaryExpression;
22 import net.sourceforge.phpdt.internal.compiler.ast.Block;
23 import net.sourceforge.phpdt.internal.compiler.ast.BreakStatement;
24 import net.sourceforge.phpdt.internal.compiler.ast.CompilationUnitDeclaration;
25 import net.sourceforge.phpdt.internal.compiler.ast.ConditionalExpression;
26 import net.sourceforge.phpdt.internal.compiler.ast.ContinueStatement;
27 import net.sourceforge.phpdt.internal.compiler.ast.EqualExpression;
28 import net.sourceforge.phpdt.internal.compiler.ast.Expression;
29 import net.sourceforge.phpdt.internal.compiler.ast.FieldDeclaration;
30 import net.sourceforge.phpdt.internal.compiler.ast.FieldReference;
31 import net.sourceforge.phpdt.internal.compiler.ast.IfStatement;
32 import net.sourceforge.phpdt.internal.compiler.ast.ImportReference;
33 import net.sourceforge.phpdt.internal.compiler.ast.InstanceOfExpression;
34 import net.sourceforge.phpdt.internal.compiler.ast.MethodDeclaration;
35 import net.sourceforge.phpdt.internal.compiler.ast.OR_OR_Expression;
36 import net.sourceforge.phpdt.internal.compiler.ast.OperatorIds;
37 import net.sourceforge.phpdt.internal.compiler.ast.ReturnStatement;
38 import net.sourceforge.phpdt.internal.compiler.ast.SingleTypeReference;
39 import net.sourceforge.phpdt.internal.compiler.ast.Statement;
40 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteral;
41 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralDQ;
42 import net.sourceforge.phpdt.internal.compiler.ast.StringLiteralSQ;
43 import net.sourceforge.phpdt.internal.compiler.ast.TypeDeclaration;
44 import net.sourceforge.phpdt.internal.compiler.ast.TypeReference;
45 import net.sourceforge.phpdt.internal.compiler.impl.CompilerOptions;
46 import net.sourceforge.phpdt.internal.compiler.impl.ReferenceContext;
47 import net.sourceforge.phpdt.internal.compiler.lookup.CompilerModifiers;
48 import net.sourceforge.phpdt.internal.compiler.lookup.TypeConstants;
49 import net.sourceforge.phpdt.internal.compiler.problem.ProblemReporter;
50 import net.sourceforge.phpdt.internal.compiler.problem.ProblemSeverities;
51 import net.sourceforge.phpdt.internal.compiler.util.Util;
52 import net.sourceforge.phpdt.internal.core.util.PHPFileUtil;
53 import net.sourceforge.phpeclipse.builder.IdentifierIndexManager;
54 //import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
56 import org.eclipse.core.resources.IFile;
57 import org.eclipse.core.resources.IProject;
58 import org.eclipse.core.resources.IResource;
59 import org.eclipse.core.runtime.IPath;
61 public class Parser implements ITerminalSymbols, CompilerModifiers,
62 ParserBasicInformation {
63 protected final static int StackIncrement = 255;
65 protected int stateStackTop;
67 // protected int[] stack = new int[StackIncrement];
69 public TokenName firstToken; // handle for multiple parsing goals
71 public int lastAct; // handle for multiple parsing goals
73 // protected RecoveredElement currentElement;
75 public static boolean VERBOSE_RECOVERY = false;
77 protected boolean diet = false; // tells the scanner to jump over some
80 * the PHP token scanner
82 public Scanner scanner;
86 protected int modifiers;
88 protected int modifiersSourceStart;
90 protected Parser(ProblemReporter problemReporter) {
91 this.problemReporter = problemReporter;
92 this.options = problemReporter.options;
93 this.token = TokenName.EOF;
94 this.initializeScanner();
97 // public void setFileToParse(IFile fileToParse) {
98 // this.token = TokenName.EOF;
99 // this.initializeScanner();
103 * ClassDeclaration Constructor.
107 * Description of Parameter
110 // public Parser(IFile fileToParse) {
111 // // if (keywordMap == null) {
112 // // keywordMap = new HashMap();
113 // // for (int i = 0; i < PHP_KEYWORS.length; i++) {
114 // // keywordMap.put(PHP_KEYWORS[i], new Integer(PHP_KEYWORD_TOKEN[i]));
117 // // this.currentPHPString = 0;
118 // // PHPParserSuperclass.fileToParse = fileToParse;
119 // // this.phpList = null;
120 // this.includesList = null;
122 // this.token = TokenName.EOF;
123 // // this.chIndx = 0;
124 // // this.rowCount = 1;
125 // // this.columnCount = 0;
126 // // this.phpEnd = false;
127 // // getNextToken();
128 // this.initializeScanner();
131 public void initializeScanner() {
132 this.scanner = new Scanner(
134 false /* whitespace */,
135 this.options.getSeverity(CompilerOptions.NonExternalizedString) != ProblemSeverities.Ignore /* nls */,
136 false, false, this.options.taskTags/* taskTags */,
137 this.options.taskPriorites/* taskPriorities */, true/* isTaskCaseSensitive */);
141 * Create marker for the parse error
143 // private void setMarker(String message, int charStart, int charEnd, int
145 // setMarker(fileToParse, message, charStart, charEnd, errorLevel);
148 * This method will throw the SyntaxError. It will add the good lines and
149 * columns to the Error
153 * @throws SyntaxError
156 private void throwSyntaxError(String error) {
157 int problemStartPosition = scanner.getCurrentTokenStartPosition();
158 int problemEndPosition = scanner.getCurrentTokenEndPosition() + 1;
159 if (scanner.source.length <= problemEndPosition
160 && problemEndPosition > 0) {
161 problemEndPosition = scanner.source.length - 1;
162 if (problemStartPosition > 0
163 && problemStartPosition >= problemEndPosition
164 && problemEndPosition > 0) {
165 problemStartPosition = problemEndPosition - 1;
168 throwSyntaxError(error, problemStartPosition, problemEndPosition);
172 * This method will throw the SyntaxError. It will add the good lines and
173 * columns to the Error
177 * @throws SyntaxError
180 // private void throwSyntaxError(String error, int startRow) {
181 // throw new SyntaxError(startRow, 0, " ", error);
183 private void throwSyntaxError(String error, int problemStartPosition,
184 int problemEndPosition) {
185 if (referenceContext != null) {
186 problemReporter.phpParsingError(new String[] { error },
187 problemStartPosition, problemEndPosition, referenceContext,
188 compilationUnit.compilationResult);
190 throw new SyntaxError(1, 0, " ", error);
193 private void reportSyntaxError(String error) {
194 int problemStartPosition = scanner.getCurrentTokenStartPosition();
195 int problemEndPosition = scanner.getCurrentTokenEndPosition();
196 reportSyntaxError(error, problemStartPosition, problemEndPosition + 1);
199 private void reportSyntaxError(String error, int problemStartPosition,
200 int problemEndPosition) {
201 if (referenceContext != null) {
202 problemReporter.phpParsingError(new String[] { error },
203 problemStartPosition, problemEndPosition, referenceContext,
204 compilationUnit.compilationResult);
208 // private void reportSyntaxWarning(String error, int problemStartPosition,
209 // int problemEndPosition) {
210 // if (referenceContext != null) {
211 // problemReporter.phpParsingWarning(new String[] { error },
212 // problemStartPosition, problemEndPosition, referenceContext,
213 // compilationUnit.compilationResult);
218 * Read the next token from input
220 private void getNextToken() {
222 token = scanner.getNextToken();
224 int currentEndPosition = scanner.getCurrentTokenEndPosition();
225 int currentStartPosition = scanner.getCurrentTokenStartPosition();
227 System.out.print ("getNextToken: from " + currentStartPosition + " to " + currentEndPosition + ": ");
228 System.out.println(scanner.toStringAction(token));
230 } catch (InvalidInputException e) {
231 token = TokenName.ERROR;
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 = TokenName.EOF;
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 = TokenName.EOF;
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 * The main entry point when parsing a file
304 protected void parse() {
305 if (scanner.compilationUnit != null) {
306 IResource resource = scanner.compilationUnit.getResource();
307 if (resource != null && resource instanceof IFile) {
308 // set the package name
309 consumePackageDeclarationName((IFile) resource);
317 if (token != TokenName.EOF && // If we are not at the end of file
318 token != TokenName.ERROR) { // and have no error
319 statementList(); // build the statement list for the entire file
322 if (token != TokenName.EOF) {
325 throwSyntaxError("Scanner error (Found unknown token: " + scanner.toStringAction(token) + ")");
329 throwSyntaxError("Too many closing ')'; end-of-file not reached.");
333 throwSyntaxError("Too many closing '}'; end-of-file not reached.");
337 throwSyntaxError("Too many closing ']'; end-of-file not reached.");
341 throwSyntaxError("Read character '('; end-of-file not reached.");
345 throwSyntaxError("Read character '{'; end-of-file not reached.");
349 throwSyntaxError("Read character '['; end-of-file not reached.");
353 throwSyntaxError("End-of-file not reached.");
358 } catch (SyntaxError syntaxError) {
359 // syntaxError.printStackTrace();
368 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
371 public void parseFunction(String s, HashMap variables) {
373 scanner.phpMode = true;
374 parseFunction(variables);
378 * Parses a string with php tags i.e. '<body> <?php phpinfo() ?>
381 protected void parseFunction(HashMap variables) {
383 boolean hasModifiers = member_modifiers();
384 if (token == TokenName.FUNCTION) {
386 checkAndSetModifiers(AccPublic);
388 this.fMethodVariables = variables;
390 MethodDeclaration methodDecl = new MethodDeclaration(null);
391 methodDecl.declarationSourceStart = scanner
392 .getCurrentTokenStartPosition();
393 methodDecl.modifiers = this.modifiers;
394 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
397 functionDefinition(methodDecl);
398 } catch (SyntaxError sytaxErr1) {
401 int sourceEnd = methodDecl.sourceEnd;
403 || methodDecl.declarationSourceStart > sourceEnd) {
404 sourceEnd = methodDecl.declarationSourceStart + 1;
406 methodDecl.sourceEnd = sourceEnd;
407 methodDecl.declarationSourceEnd = sourceEnd;
412 protected CompilationUnitDeclaration endParse(int act) {
416 // if (currentElement != null) {
417 // currentElement.topElement().updateParseTree();
418 // if (VERBOSE_RECOVERY) {
419 // System.out.print(Util.bind("parser.syntaxRecovery")); //$NON-NLS-1$
420 // System.out.println("--------------------------"); //$NON-NLS-1$
421 // System.out.println(compilationUnit);
422 // System.out.println("----------------------------------");
426 if (diet & VERBOSE_RECOVERY) {
427 System.out.print(Util.bind("parser.regularParse")); //$NON-NLS-1$
428 System.out.println("--------------------------"); //$NON-NLS-1$
429 System.out.println(compilationUnit);
430 System.out.println("----------------------------------"); //$NON-NLS-1$
433 if (scanner.recordLineSeparator) {
434 compilationUnit.compilationResult.lineSeparatorPositions = scanner
437 if (scanner.taskTags != null) {
438 for (int i = 0; i < scanner.foundTaskCount; i++) {
439 problemReporter().task(
440 new String(scanner.foundTaskTags[i]),
441 new String(scanner.foundTaskMessages[i]),
442 scanner.foundTaskPriorities[i] == null ? null
443 : new String(scanner.foundTaskPriorities[i]),
444 scanner.foundTaskPositions[i][0],
445 scanner.foundTaskPositions[i][1]);
448 compilationUnit.imports = new ImportReference[includesList.size()];
449 for (int i = 0; i < includesList.size(); i++) {
450 compilationUnit.imports[i] = (ImportReference) includesList.get(i);
452 return compilationUnit;
457 * @return A block object which contains all statements from within the current block
459 private Block statementList() {
460 boolean branchStatement = false;
461 int blockStart = scanner.getCurrentTokenStartPosition();
462 ArrayList blockStatements = new ArrayList();
467 statement = statement();
469 if (statement != null) {
470 blockStatements.add(statement);
473 if (token == TokenName.EOF) {
477 if (branchStatement && statement != null) {
478 // reportSyntaxError("Unreachable code", statement.sourceStart, statement.sourceEnd);
479 if (!(statement instanceof BreakStatement)) {
481 * Don't give an error for break statement following return statement.
482 * Technically it's unreachable code, but in switch-case it's recommended to avoid
483 * accidental fall-through later when editing the code
485 problemReporter.unreachableCode (new String (scanner.getCurrentIdentifierSource ()),
486 statement.sourceStart,
489 compilationUnit.compilationResult);
507 return createBlock (blockStart, blockStatements); // Create and return a block object (contains all the statements from the current read block)
510 branchStatement = checkUnreachableStatements(statement);
512 catch (SyntaxError sytaxErr1) {
513 // If an error occurred, try to find keywords
514 // to parse the rest of the string
515 boolean tokenize = scanner.tokenizeStrings;
518 scanner.tokenizeStrings = true;
522 boolean bBreakLoop = false;
524 while (token != TokenName.EOF) { // As long as we are not at the end of file
525 switch (token) { // If a block close?
539 return createBlock (blockStart, blockStatements); // Create and return a block object (contains all the statements from the current read block)
576 // System.out.println(scanner.toStringAction(token));
578 // System.out.println(scanner.toStringAction(token));
581 if (token == TokenName.EOF) {
585 scanner.tokenizeStrings = tokenize;
595 private boolean checkUnreachableStatements(Statement statement) {
596 if (statement instanceof ReturnStatement ||
597 statement instanceof ContinueStatement ||
598 statement instanceof BreakStatement) {
600 } else if (statement instanceof IfStatement
601 && ((IfStatement) statement).checkUnreachable) {
609 * @param blockStatements
612 private Block createBlock (int blockStart, ArrayList blockStatements) {
613 int blockEnd = scanner.getCurrentTokenEndPosition ();
614 Block b = Block.EmptyWith (blockStart, blockEnd);
616 b.statements = new Statement[blockStatements.size()];
617 blockStatements.toArray (b.statements);
622 private void functionBody(MethodDeclaration methodDecl) {
623 // '{' [statement-list] '}'
624 if (token == TokenName.LBRACE) {
627 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
628 throwSyntaxError("'{' expected in compound-statement.");
631 if (token != TokenName.RBRACE) {
635 if (token == TokenName.RBRACE) {
636 methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
639 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
640 throwSyntaxError("'}' expected in compound-statement.");
645 * Try to create an statement reading from the current token position
647 * @return Returns a found statement or empty statement
649 private Statement statement() {
650 Statement statement = null;
651 Expression expression;
652 int sourceStart = scanner.getCurrentTokenStartPosition();
657 // T_IF '(' expr ')' statement elseif_list else_single
658 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
659 // new_else_single T_ENDIF ';'
661 if (token == TokenName.LPAREN) {
664 throwSyntaxError("'(' expected after 'if' keyword.");
669 if (token == TokenName.RPAREN) {
672 throwSyntaxError("')' expected after 'if' condition.");
674 // create basic IfStatement
675 IfStatement ifStatement = new IfStatement(expression, null, null, sourceStart, -1);
677 if (token == TokenName.COLON) {
679 ifStatementColon(ifStatement);
681 ifStatement(ifStatement);
687 if (token == TokenName.LPAREN) {
690 throwSyntaxError("'(' expected after 'switch' keyword.");
693 if (token == TokenName.RPAREN) {
696 throwSyntaxError("')' expected after 'switch' condition.");
703 if (token == TokenName.LPAREN) {
706 throwSyntaxError("'(' expected after 'for' keyword.");
708 if (token == TokenName.SEMICOLON) {
712 if (token == TokenName.SEMICOLON) {
715 throwSyntaxError("';' expected after 'for'.");
718 if (token == TokenName.SEMICOLON) {
722 if (token == TokenName.SEMICOLON) {
725 throwSyntaxError("';' expected after 'for'.");
728 if (token == TokenName.RPAREN) {
732 if (token == TokenName.RPAREN) {
735 throwSyntaxError("')' expected after 'for'.");
743 if (token == TokenName.LPAREN) {
746 throwSyntaxError("'(' expected after 'while' keyword.");
749 if (token == TokenName.RPAREN) {
752 throwSyntaxError("')' expected after 'while' condition.");
759 if (token == TokenName.LBRACE) {
761 if (token != TokenName.RBRACE) {
764 if (token == TokenName.RBRACE) {
767 throwSyntaxError("'}' expected after 'do' keyword.");
772 if (token == TokenName.WHILE) {
774 if (token == TokenName.LPAREN) {
777 throwSyntaxError("'(' expected after 'while' keyword.");
780 if (token == TokenName.RPAREN) {
783 throwSyntaxError("')' expected after 'while' condition.");
786 throwSyntaxError("'while' expected after 'do' keyword.");
788 if (token == TokenName.SEMICOLON) {
791 if (token != TokenName.INLINE_HTML) {
792 throwSyntaxError("';' expected after do-while statement.");
800 if (token == TokenName.LPAREN) {
803 throwSyntaxError("'(' expected after 'foreach' keyword.");
806 if (token == TokenName.AS) {
809 throwSyntaxError("'as' expected after 'foreach' exxpression.");
813 foreach_optional_arg();
814 if (token == TokenName.EQUAL_GREATER) {
816 variable(false, false);
818 if (token == TokenName.RPAREN) {
821 throwSyntaxError("')' expected after 'foreach' expression.");
829 if (token != TokenName.SEMICOLON) {
832 if (token == TokenName.SEMICOLON) {
833 sourceEnd = scanner.getCurrentTokenEndPosition();
836 if (token != TokenName.INLINE_HTML) {
837 throwSyntaxError("';' expected after 'break'.");
839 sourceEnd = scanner.getCurrentTokenEndPosition();
842 return new BreakStatement(null, sourceStart, sourceEnd);
847 if (token != TokenName.SEMICOLON) {
850 if (token == TokenName.SEMICOLON) {
851 sourceEnd = scanner.getCurrentTokenEndPosition();
854 if (token != TokenName.INLINE_HTML) {
855 throwSyntaxError("';' expected after 'continue'.");
857 sourceEnd = scanner.getCurrentTokenEndPosition();
860 return new ContinueStatement(null, sourceStart, sourceEnd);
866 if (token == TokenName.VARIABLE) {
869 if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) {
872 if (token != TokenName.IDENTIFIER) {
873 throwSyntaxError("identifier expected after '::'.");
881 if (token != TokenName.SEMICOLON) {
885 if (token == TokenName.SEMICOLON) {
886 sourceEnd = scanner.getCurrentTokenEndPosition();
890 if (token != TokenName.INLINE_HTML) {
891 throwSyntaxError("';' expected after 'return'.");
894 sourceEnd = scanner.getCurrentTokenEndPosition();
897 return new ReturnStatement(expression, sourceStart, sourceEnd);
900 getNextToken(); // Read the token after 'echo'
901 expressionList(); // Read everything after 'echo'
902 if (token == TokenName.SEMICOLON) {
905 if (token != TokenName.INLINE_HTML) {
906 throwSyntaxError("';' expected after 'echo' statement.");
910 return statement; // return null statement
913 // 0-length token directly after PHP short tag <?=
916 if (token == TokenName.SEMICOLON) {
918 // if (token != TokenName.INLINE_HTML) {
919 // // TODO should this become a configurable warning?
920 // reportSyntaxError("Probably '?>' expected after PHP short tag
921 // expression (only the first expression will be echoed).");
924 if (token != TokenName.INLINE_HTML) {
925 throwSyntaxError("';' expected after PHP short tag '<?=' expression.");
938 if (token == TokenName.SEMICOLON) {
941 if (token != TokenName.INLINE_HTML) {
942 throwSyntaxError("';' expected after 'global' statement.");
951 if (token == TokenName.SEMICOLON) {
954 if (token != TokenName.INLINE_HTML) {
955 throwSyntaxError("';' expected after 'static' statement.");
963 if (token == TokenName.LPAREN) {
966 throwSyntaxError("'(' expected after 'unset' statement.");
969 if (token == TokenName.RPAREN) {
972 throwSyntaxError("')' expected after 'unset' statement.");
974 if (token == TokenName.SEMICOLON) {
977 if (token != TokenName.INLINE_HTML) {
978 throwSyntaxError("';' expected after 'unset' statement.");
988 if (token == TokenName.SEMICOLON) { // After the namespace identifier there is a ';'
991 else if (token == TokenName.LBRACE) { // or a '{'
992 getNextToken(); // set to next token
994 if (token != TokenName.RBRACE) { // if next token is not a '}'
995 statementList(); // read the entire block
998 if (token == TokenName.RBRACE) { // If the end is a '}'
999 getNextToken(); // go for the next token
1001 else { // Not a '}' as expected
1002 throwSyntaxError("'}' expected after 'do' keyword.");
1006 if (token != TokenName.INLINE_HTML) {
1007 throwSyntaxError("';' expected after 'namespace' statement.");
1014 getNextToken (); // This should get the label
1016 if (token == TokenName.IDENTIFIER) {
1020 throwSyntaxError("expected a label after goto");
1023 if (token == TokenName.SEMICOLON) { // After the 'goto' label name there is a ';'
1027 throwSyntaxError("expected a ';' after goto label");
1032 MethodDeclaration methodDecl = new MethodDeclaration (this.compilationUnit.compilationResult);
1033 methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
1034 methodDecl.modifiers = AccDefault;
1035 methodDecl.type = MethodDeclaration.FUNCTION_DEFINITION;
1038 functionDefinition(methodDecl);
1040 sourceEnd = methodDecl.sourceEnd;
1041 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
1042 sourceEnd = methodDecl.declarationSourceStart + 1;
1044 methodDecl.declarationSourceEnd = sourceEnd;
1045 methodDecl.sourceEnd = sourceEnd;
1050 // T_DECLARE '(' declare_list ')' declare_statement
1052 if (token != TokenName.LPAREN) {
1053 throwSyntaxError("'(' expected in 'declare' statement.");
1057 if (token != TokenName.RPAREN) {
1058 throwSyntaxError("')' expected in 'declare' statement.");
1061 declare_statement();
1066 if (token != TokenName.LBRACE) {
1067 throwSyntaxError("'{' expected in 'try' statement.");
1071 if (token != TokenName.RBRACE) {
1072 throwSyntaxError("'}' expected in 'try' statement.");
1079 if (token != TokenName.LPAREN) {
1080 throwSyntaxError("'(' expected in 'catch' statement.");
1083 fully_qualified_class_name();
1084 if (token != TokenName.VARIABLE) {
1085 throwSyntaxError("Variable expected in 'catch' statement.");
1089 if (token != TokenName.RPAREN) {
1090 throwSyntaxError("')' expected in 'catch' statement.");
1093 if (token != TokenName.LBRACE) {
1094 throwSyntaxError("'{' expected in 'catch' statement.");
1097 if (token != TokenName.RBRACE) {
1099 if (token != TokenName.RBRACE) {
1100 throwSyntaxError("'}' expected in 'catch' statement.");
1104 additional_catches();
1110 if (token == TokenName.SEMICOLON) {
1113 throwSyntaxError("';' expected after 'throw' exxpression.");
1122 TypeDeclaration typeDecl = new TypeDeclaration (this.compilationUnit.compilationResult);
1123 typeDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
1124 typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
1125 typeDecl.name = new char[] { ' ' };
1126 // default super class
1127 typeDecl.superclass = new SingleTypeReference(TypeConstants.OBJECT, 0);
1128 compilationUnit.types.add(typeDecl);
1129 pushOnAstStack(typeDecl);
1130 unticked_class_declaration_statement(typeDecl);
1140 if (token != TokenName.RBRACE) {
1141 statement = statementList();
1143 if (token == TokenName.RBRACE) {
1147 throwSyntaxError("'}' expected.");
1152 if (token != TokenName.SEMICOLON) {
1156 if (token == TokenName.SEMICOLON) {
1160 else if (token == TokenName.COLON) { // Colon after Label identifier
1165 if (token == TokenName.RBRACE) {
1166 reportSyntaxError ("';' expected after expression (Found token: "
1167 + scanner.toStringAction(token) + ")");
1170 if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) {
1173 if (token != TokenName.IDENTIFIER) {
1174 throwSyntaxError("identifier expected after '::'.");
1180 else if (token != TokenName.INLINE_HTML && token != TokenName.EOF) {
1181 throwSyntaxError ("';' expected after expression (Found token: "
1182 + scanner.toStringAction(token) + ")");
1193 private void declare_statement() {
1195 // | ':' inner_statement_list T_ENDDECLARE ';'
1197 if (token == TokenName.COLON) {
1199 // TODO: implement inner_statement_list();
1201 if (token != TokenName.ENDDECLARE) {
1202 throwSyntaxError("'enddeclare' expected in 'declare' statement.");
1205 if (token != TokenName.SEMICOLON) {
1206 throwSyntaxError("';' expected after 'enddeclare' keyword.");
1214 private void declare_list() {
1215 // T_STRING '=' static_scalar
1216 // | declare_list ',' T_STRING '=' static_scalar
1218 if (token != TokenName.IDENTIFIER) {
1219 throwSyntaxError("Identifier expected in 'declare' list.");
1222 if (token != TokenName.EQUAL) {
1223 throwSyntaxError("'=' expected in 'declare' list.");
1227 if (token != TokenName.COMMA) {
1234 private void additional_catches() {
1235 while (token == TokenName.CATCH) {
1237 if (token != TokenName.LPAREN) {
1238 throwSyntaxError("'(' expected in 'catch' statement.");
1241 fully_qualified_class_name();
1242 if (token != TokenName.VARIABLE) {
1243 throwSyntaxError("Variable expected in 'catch' statement.");
1247 if (token != TokenName.RPAREN) {
1248 throwSyntaxError("')' expected in 'catch' statement.");
1251 if (token != TokenName.LBRACE) {
1252 throwSyntaxError("'{' expected in 'catch' statement.");
1255 if (token != TokenName.RBRACE) {
1258 if (token != TokenName.RBRACE) {
1259 throwSyntaxError("'}' expected in 'catch' statement.");
1265 private void foreach_variable() {
1268 if (token == TokenName.OP_AND) {
1274 private void foreach_optional_arg() {
1276 // | T_DOUBLE_ARROW foreach_variable
1277 if (token == TokenName.EQUAL_GREATER) {
1283 private void global_var_list() {
1285 // global_var_list ',' global_var
1287 HashSet set = peekVariableSet();
1290 if (token != TokenName.COMMA) {
1297 private void global_var(HashSet set) {
1301 // | '$' '{' expr '}'
1302 if (token == TokenName.VARIABLE) {
1303 if (fMethodVariables != null) {
1304 VariableInfo info = new VariableInfo(scanner
1305 .getCurrentTokenStartPosition(),
1306 VariableInfo.LEVEL_GLOBAL_VAR);
1307 fMethodVariables.put(new String(scanner
1308 .getCurrentIdentifierSource()), info);
1310 addVariableSet(set);
1312 } else if (token == TokenName.DOLLAR) {
1314 if (token == TokenName.LBRACE) {
1317 if (token != TokenName.RBRACE) {
1318 throwSyntaxError("'}' expected in global variable.");
1327 private void static_var_list() {
1329 // static_var_list ',' T_VARIABLE
1330 // | static_var_list ',' T_VARIABLE '=' static_scalar
1332 // | T_VARIABLE '=' static_scalar,
1333 HashSet set = peekVariableSet();
1335 if (token == TokenName.VARIABLE) {
1336 if (fMethodVariables != null) {
1337 VariableInfo info = new VariableInfo(scanner
1338 .getCurrentTokenStartPosition(),
1339 VariableInfo.LEVEL_STATIC_VAR);
1340 fMethodVariables.put(new String(scanner
1341 .getCurrentIdentifierSource()), info);
1343 addVariableSet(set);
1345 if (token == TokenName.EQUAL) {
1349 if (token != TokenName.COMMA) {
1359 private void unset_variables() {
1362 // | unset_variables ',' unset_variable
1366 variable(false, false);
1367 if (token != TokenName.COMMA) {
1374 private final void initializeModifiers() {
1376 this.modifiersSourceStart = -1;
1379 private final void checkAndSetModifiers(int flag) {
1380 this.modifiers |= flag;
1381 if (this.modifiersSourceStart < 0)
1382 this.modifiersSourceStart = this.scanner.startPosition;
1385 private void unticked_class_declaration_statement(TypeDeclaration typeDecl) {
1386 initializeModifiers();
1387 if (token == TokenName.INTERFACE) {
1388 // interface_entry T_STRING
1389 // interface_extends_list
1390 // '{' class_statement_list '}'
1391 checkAndSetModifiers(AccInterface);
1393 typeDecl.modifiers = this.modifiers;
1394 typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1395 typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1396 if (token == TokenName.IDENTIFIER || token.compareTo (TokenName.KEYWORD) > 0) {
1397 typeDecl.name = scanner.getCurrentIdentifierSource();
1398 if (token.compareTo (TokenName.KEYWORD) > 0) {
1399 problemReporter.phpKeywordWarning(new String[] { scanner
1400 .toStringAction(token) }, scanner
1401 .getCurrentTokenStartPosition(), scanner
1402 .getCurrentTokenEndPosition(), referenceContext,
1403 compilationUnit.compilationResult);
1404 // throwSyntaxError("Don't use a keyword for interface
1406 // + scanner.toStringAction(token) + "].",
1407 // typeDecl.sourceStart, typeDecl.sourceEnd);
1410 interface_extends_list(typeDecl);
1412 typeDecl.name = new char[] { ' ' };
1414 "Interface name expected after keyword 'interface'.",
1415 typeDecl.sourceStart, typeDecl.sourceEnd);
1419 // class_entry_type T_STRING extends_from
1421 // '{' class_statement_list'}'
1423 typeDecl.modifiers = this.modifiers;
1424 typeDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1425 typeDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1427 // identifier 'extends' identifier
1428 if (token == TokenName.IDENTIFIER || token.compareTo (TokenName.KEYWORD) > 0) {
1429 typeDecl.name = scanner.getCurrentIdentifierSource();
1430 if (token.compareTo (TokenName.KEYWORD) > 0) {
1431 problemReporter.phpKeywordWarning(new String[] { scanner
1432 .toStringAction(token) }, scanner
1433 .getCurrentTokenStartPosition(), scanner
1434 .getCurrentTokenEndPosition(), referenceContext,
1435 compilationUnit.compilationResult);
1436 // throwSyntaxError("Don't use a keyword for class
1438 // scanner.toStringAction(token) + "].",
1439 // typeDecl.sourceStart, typeDecl.sourceEnd);
1444 // | T_EXTENDS fully_qualified_class_name
1445 if (token == TokenName.EXTENDS) {
1446 class_extends_list(typeDecl);
1448 // if (token != TokenName.IDENTIFIER) {
1449 // throwSyntaxError("Class name expected after keyword
1451 // scanner.getCurrentTokenStartPosition(), scanner
1452 // .getCurrentTokenEndPosition());
1455 implements_list(typeDecl);
1457 typeDecl.name = new char[] { ' ' };
1458 throwSyntaxError("Class name expected after keyword 'class'.",
1459 typeDecl.sourceStart, typeDecl.sourceEnd);
1463 // '{' class_statement_list '}'
1464 if (token == TokenName.LBRACE) {
1466 if (token != TokenName.RBRACE) {
1467 ArrayList list = new ArrayList();
1468 class_statement_list(list);
1469 typeDecl.fields = new FieldDeclaration[list.size()];
1470 for (int i = 0; i < list.size(); i++) {
1471 typeDecl.fields[i] = (FieldDeclaration) list.get(i);
1474 if (token == TokenName.RBRACE) {
1475 typeDecl.declarationSourceEnd = scanner
1476 .getCurrentTokenEndPosition();
1479 throwSyntaxError("'}' expected at end of class body.");
1482 throwSyntaxError("'{' expected at start of class body.");
1486 private void class_entry_type() {
1488 // | T_ABSTRACT T_CLASS
1489 // | T_FINAL T_CLASS
1490 if (token == TokenName.CLASS) {
1492 } else if (token == TokenName.ABSTRACT) {
1493 checkAndSetModifiers(AccAbstract);
1495 if (token != TokenName.CLASS) {
1496 throwSyntaxError("Keyword 'class' expected after keyword 'abstract'.");
1499 } else if (token == TokenName.FINAL) {
1500 checkAndSetModifiers(AccFinal);
1502 if (token != TokenName.CLASS) {
1503 throwSyntaxError("Keyword 'class' expected after keyword 'final'.");
1507 throwSyntaxError("Keyword 'class' 'final' or 'abstract' expected");
1511 // private void class_extends(TypeDeclaration typeDecl) {
1513 // // | T_EXTENDS interface_list
1514 // if (token == TokenName.EXTENDS) {
1517 // if (token == TokenName.IDENTIFIER) {
1520 // throwSyntaxError("Class name expected after keyword 'extends'.");
1525 private void interface_extends_list(TypeDeclaration typeDecl) {
1527 // | T_EXTENDS interface_list
1528 if (token == TokenName.EXTENDS) {
1530 interface_list(typeDecl);
1534 private void class_extends_list(TypeDeclaration typeDecl) {
1536 // | T_EXTENDS interface_list
1537 if (token == TokenName.EXTENDS) {
1539 class_list(typeDecl);
1543 private void implements_list(TypeDeclaration typeDecl) {
1545 // | T_IMPLEMENTS interface_list
1546 if (token == TokenName.IMPLEMENTS) {
1548 interface_list(typeDecl);
1552 private void class_list(TypeDeclaration typeDecl) {
1554 // fully_qualified_class_name
1556 if (token == TokenName.IDENTIFIER) {
1557 //char[] ident = scanner.getCurrentIdentifierSource();
1558 // TODO make this code working better:
1559 // SingleTypeReference ref =
1560 // ParserUtil.getTypeReference(scanner,
1561 // includesList, ident);
1562 // if (ref != null) {
1563 // typeDecl.superclass = ref;
1567 throwSyntaxError("Classname expected after keyword 'extends'.");
1569 if (token == TokenName.COMMA) {
1570 reportSyntaxError("No multiple inheritance allowed. Expected token 'implements' or '{'.");
1579 private void interface_list(TypeDeclaration typeDecl) {
1581 // fully_qualified_class_name
1582 // | interface_list ',' fully_qualified_class_name
1584 if (token == TokenName.IDENTIFIER) {
1587 throwSyntaxError("Interfacename expected after keyword 'implements'.");
1589 if (token != TokenName.COMMA) {
1596 // private void classBody(TypeDeclaration typeDecl) {
1597 // //'{' [class-element-list] '}'
1598 // if (token == TokenName.LBRACE) {
1600 // if (token != TokenName.RBRACE) {
1601 // class_statement_list();
1603 // if (token == TokenName.RBRACE) {
1604 // typeDecl.declarationSourceEnd = scanner.getCurrentTokenEndPosition();
1607 // throwSyntaxError("'}' expected at end of class body.");
1610 // throwSyntaxError("'{' expected at start of class body.");
1613 private void class_statement_list(ArrayList list) {
1616 class_statement(list);
1617 if (token == TokenName.PUBLIC ||
1618 token == TokenName.PROTECTED ||
1619 token == TokenName.PRIVATE ||
1620 token == TokenName.STATIC ||
1621 token == TokenName.ABSTRACT ||
1622 token == TokenName.FINAL ||
1623 token == TokenName.FUNCTION ||
1624 token == TokenName.VAR ||
1625 token == TokenName.CONST) {
1629 if (token == TokenName.RBRACE) {
1633 throwSyntaxError("'}' at end of class statement.");
1635 catch (SyntaxError sytaxErr1) {
1636 boolean tokenize = scanner.tokenizeStrings;
1639 scanner.tokenizeStrings = true;
1642 // if an error occured,
1643 // try to find keywords
1644 // to parse the rest of the string
1645 while (token != TokenName.EOF) {
1646 if (token == TokenName.PUBLIC ||
1647 token == TokenName.PROTECTED ||
1648 token == TokenName.PRIVATE ||
1649 token == TokenName.STATIC ||
1650 token == TokenName.ABSTRACT ||
1651 token == TokenName.FINAL ||
1652 token == TokenName.FUNCTION ||
1653 token == TokenName.VAR ||
1654 token == TokenName.CONST) {
1657 // System.out.println(scanner.toStringAction(token));
1660 if (token == TokenName.EOF) {
1664 scanner.tokenizeStrings = tokenize;
1673 private void class_statement(ArrayList list) {
1675 // variable_modifiers class_variable_declaration ';'
1676 // | class_constant_declaration ';'
1677 // | method_modifiers T_FUNCTION is_reference T_STRING
1678 // '(' parameter_list ')' method_body
1679 initializeModifiers();
1680 int declarationSourceStart = scanner.getCurrentTokenStartPosition();
1682 if (token == TokenName.VAR) {
1683 checkAndSetModifiers(AccPublic);
1684 problemReporter.phpVarDeprecatedWarning(scanner
1685 .getCurrentTokenStartPosition(), scanner
1686 .getCurrentTokenEndPosition(), referenceContext,
1687 compilationUnit.compilationResult);
1689 class_variable_declaration(declarationSourceStart, list);
1690 } else if (token == TokenName.CONST) {
1691 checkAndSetModifiers(AccFinal | AccPublic);
1692 class_constant_declaration(declarationSourceStart, list);
1693 if (token != TokenName.SEMICOLON) {
1694 throwSyntaxError("';' expected after class const declaration.");
1698 boolean hasModifiers = member_modifiers();
1699 if (token == TokenName.FUNCTION) {
1700 if (!hasModifiers) {
1701 checkAndSetModifiers(AccPublic);
1703 MethodDeclaration methodDecl = new MethodDeclaration(
1704 this.compilationUnit.compilationResult);
1705 methodDecl.declarationSourceStart = scanner
1706 .getCurrentTokenStartPosition();
1707 methodDecl.modifiers = this.modifiers;
1708 methodDecl.type = MethodDeclaration.METHOD_DEFINITION;
1711 functionDefinition(methodDecl);
1713 int sourceEnd = methodDecl.sourceEnd;
1715 || methodDecl.declarationSourceStart > sourceEnd) {
1716 sourceEnd = methodDecl.declarationSourceStart + 1;
1718 methodDecl.declarationSourceEnd = sourceEnd;
1719 methodDecl.sourceEnd = sourceEnd;
1722 if (!hasModifiers) {
1723 throwSyntaxError("'public' 'private' or 'protected' modifier expected for field declarations.");
1725 class_variable_declaration(declarationSourceStart, list);
1730 private void class_constant_declaration(int declarationSourceStart,
1732 // class_constant_declaration ',' T_STRING '=' static_scalar
1733 // | T_CONST T_STRING '=' static_scalar
1734 if (token != TokenName.CONST) {
1735 throwSyntaxError("'const' keyword expected in class declaration.");
1740 if (token != TokenName.IDENTIFIER) {
1741 throwSyntaxError("Identifier expected in class const declaration.");
1743 FieldDeclaration fieldDeclaration = new FieldDeclaration(scanner
1744 .getCurrentIdentifierSource(), scanner
1745 .getCurrentTokenStartPosition(), scanner
1746 .getCurrentTokenEndPosition());
1747 fieldDeclaration.modifiers = this.modifiers;
1748 fieldDeclaration.declarationSourceStart = declarationSourceStart;
1749 fieldDeclaration.declarationSourceEnd = scanner
1750 .getCurrentTokenEndPosition();
1751 fieldDeclaration.modifiersSourceStart = declarationSourceStart;
1752 // fieldDeclaration.type
1753 list.add(fieldDeclaration);
1755 if (token != TokenName.EQUAL) {
1756 throwSyntaxError("'=' expected in class const declaration.");
1760 if (token != TokenName.COMMA) {
1761 break; // while(true)-loop
1767 // private void variable_modifiers() {
1768 // // variable_modifiers:
1769 // // non_empty_member_modifiers
1771 // initializeModifiers();
1772 // if (token == TokenName.var) {
1773 // checkAndSetModifiers(AccPublic);
1774 // reportSyntaxError(
1775 // "Keyword 'var' is deprecated. Please use 'public' 'private' or
1777 // modifier for field declarations.",
1778 // scanner.getCurrentTokenStartPosition(), scanner
1779 // .getCurrentTokenEndPosition());
1782 // if (!member_modifiers()) {
1783 // throwSyntaxError("'public' 'private' or 'protected' modifier expected for
1784 // field declarations.");
1788 // private void method_modifiers() {
1789 // //method_modifiers:
1791 // //| non_empty_member_modifiers
1792 // initializeModifiers();
1793 // if (!member_modifiers()) {
1794 // checkAndSetModifiers(AccPublic);
1797 private boolean member_modifiers() {
1804 boolean foundToken = false;
1806 if (token == TokenName.PUBLIC) {
1807 checkAndSetModifiers(AccPublic);
1810 } else if (token == TokenName.PROTECTED) {
1811 checkAndSetModifiers(AccProtected);
1814 } else if (token == TokenName.PRIVATE) {
1815 checkAndSetModifiers(AccPrivate);
1818 } else if (token == TokenName.STATIC) {
1819 checkAndSetModifiers(AccStatic);
1822 } else if (token == TokenName.ABSTRACT) {
1823 checkAndSetModifiers(AccAbstract);
1826 } else if (token == TokenName.FINAL) {
1827 checkAndSetModifiers(AccFinal);
1837 private void class_variable_declaration(int declarationSourceStart,
1839 // class_variable_declaration:
1840 // class_variable_declaration ',' T_VARIABLE
1841 // | class_variable_declaration ',' T_VARIABLE '=' static_scalar
1843 // | T_VARIABLE '=' static_scalar
1844 char[] classVariable;
1846 if (token == TokenName.VARIABLE) {
1847 classVariable = scanner.getCurrentIdentifierSource();
1848 // indexManager.addIdentifierInformation('v', classVariable,
1851 FieldDeclaration fieldDeclaration = new FieldDeclaration(
1852 classVariable, scanner.getCurrentTokenStartPosition(),
1853 scanner.getCurrentTokenEndPosition());
1854 fieldDeclaration.modifiers = this.modifiers;
1855 fieldDeclaration.declarationSourceStart = declarationSourceStart;
1856 fieldDeclaration.declarationSourceEnd = scanner
1857 .getCurrentTokenEndPosition();
1858 fieldDeclaration.modifiersSourceStart = declarationSourceStart;
1859 list.add(fieldDeclaration);
1860 if (fTypeVariables != null) {
1861 VariableInfo info = new VariableInfo(scanner
1862 .getCurrentTokenStartPosition(),
1863 VariableInfo.LEVEL_CLASS_UNIT);
1864 fTypeVariables.put(new String(scanner
1865 .getCurrentIdentifierSource()), info);
1868 if (token == TokenName.EQUAL) {
1873 // if (token == TokenName.THIS) {
1874 // throwSyntaxError("'$this' not allowed after keyword 'public'
1875 // 'protected' 'private' 'var'.");
1877 throwSyntaxError("Variable expected after keyword 'public' 'protected' 'private' 'var'.");
1879 if (token != TokenName.COMMA) {
1884 if (token != TokenName.SEMICOLON) {
1885 throwSyntaxError("';' expected after field declaration.");
1890 private void functionDefinition(MethodDeclaration methodDecl) {
1891 boolean isAbstract = false;
1893 if (compilationUnit != null) {
1894 compilationUnit.types.add(methodDecl);
1897 ASTNode node = astStack[astPtr];
1898 if (node instanceof TypeDeclaration) {
1899 TypeDeclaration typeDecl = ((TypeDeclaration) node);
1900 if (typeDecl.methods == null) {
1901 typeDecl.methods = new AbstractMethodDeclaration[] { methodDecl };
1903 AbstractMethodDeclaration[] newMethods;
1908 newMethods = new AbstractMethodDeclaration[typeDecl.methods.length + 1],
1909 0, typeDecl.methods.length);
1910 newMethods[typeDecl.methods.length] = methodDecl;
1911 typeDecl.methods = newMethods;
1913 if ((typeDecl.modifiers & AccAbstract) == AccAbstract) {
1915 } else if ((typeDecl.modifiers & AccInterface) == AccInterface) {
1921 pushFunctionVariableSet();
1922 functionDeclarator(methodDecl);
1923 if (token == TokenName.SEMICOLON) {
1925 methodDecl.sourceEnd = scanner
1926 .getCurrentTokenStartPosition() - 1;
1927 throwSyntaxError("Body declaration expected for method: "
1928 + new String(methodDecl.selector));
1933 functionBody(methodDecl);
1935 if (!fStackUnassigned.isEmpty()) {
1936 fStackUnassigned.remove(fStackUnassigned.size() - 1);
1941 private void functionDeclarator(MethodDeclaration methodDecl) {
1942 // identifier '(' [parameter-list] ')'
1943 if (token == TokenName.OP_AND) {
1947 methodDecl.sourceStart = scanner.getCurrentTokenStartPosition();
1948 methodDecl.sourceEnd = scanner.getCurrentTokenEndPosition();
1950 if (Scanner.isIdentifierOrKeyword (token) ||
1951 token == TokenName.LPAREN) {
1953 if (token == TokenName.LPAREN) {
1954 methodDecl.selector = scanner.getCurrentIdentifierSource();
1956 if (token.compareTo (TokenName.KEYWORD) > 0) {
1957 problemReporter.phpKeywordWarning (new String[] {scanner.toStringAction(token) },
1958 scanner.getCurrentTokenStartPosition(),
1959 scanner.getCurrentTokenEndPosition(),
1961 compilationUnit.compilationResult);
1965 methodDecl.selector = scanner.getCurrentIdentifierSource();
1967 if (token.compareTo (TokenName.KEYWORD) > 0) {
1968 problemReporter.phpKeywordWarning (new String[] {scanner.toStringAction(token) },
1969 scanner.getCurrentTokenStartPosition(),
1970 scanner.getCurrentTokenEndPosition(),
1972 compilationUnit.compilationResult);
1978 if (token == TokenName.LPAREN) {
1982 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1983 throwSyntaxError("'(' expected in function declaration.");
1986 if (token != TokenName.RPAREN) {
1987 parameter_list(methodDecl);
1990 if (token != TokenName.RPAREN) {
1991 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
1992 throwSyntaxError("')' expected in function declaration.");
1995 methodDecl.bodyStart = scanner.getCurrentTokenEndPosition() + 1;
2000 methodDecl.selector = "<undefined>".toCharArray();
2001 methodDecl.sourceEnd = scanner.getCurrentTokenStartPosition() - 1;
2002 throwSyntaxError("Function name expected after keyword 'function'.");
2007 private void parameter_list(MethodDeclaration methodDecl) {
2008 // non_empty_parameter_list
2010 non_empty_parameter_list(methodDecl, true);
2013 private void non_empty_parameter_list(MethodDeclaration methodDecl,
2014 boolean empty_allowed) {
2015 // optional_class_type T_VARIABLE
2016 // | optional_class_type '&' T_VARIABLE
2017 // | optional_class_type '&' T_VARIABLE '=' static_scalar
2018 // | optional_class_type T_VARIABLE '=' static_scalar
2019 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE
2020 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE
2021 // | non_empty_parameter_list ',' optional_class_type '&' T_VARIABLE '='
2023 // | non_empty_parameter_list ',' optional_class_type T_VARIABLE '='
2025 char[] typeIdentifier = null;
2026 if (token == TokenName.IDENTIFIER ||
2027 token == TokenName.ARRAY ||
2028 token == TokenName.VARIABLE ||
2029 token == TokenName.OP_AND) {
2030 HashSet set = peekVariableSet();
2033 if (token == TokenName.IDENTIFIER || token == TokenName.ARRAY) {// feature req. #1254275
2034 typeIdentifier = scanner.getCurrentIdentifierSource();
2037 if (token == TokenName.OP_AND) {
2040 if (token == TokenName.VARIABLE) {
2041 if (fMethodVariables != null) {
2043 if (methodDecl.type == MethodDeclaration.FUNCTION_DEFINITION) {
2044 info = new VariableInfo(scanner
2045 .getCurrentTokenStartPosition(),
2046 VariableInfo.LEVEL_FUNCTION_DEFINITION);
2048 info = new VariableInfo(scanner
2049 .getCurrentTokenStartPosition(),
2050 VariableInfo.LEVEL_METHOD_DEFINITION);
2052 info.typeIdentifier = typeIdentifier;
2053 fMethodVariables.put(new String(scanner
2054 .getCurrentIdentifierSource()), info);
2056 addVariableSet(set);
2058 if (token == TokenName.EQUAL) {
2063 throwSyntaxError("Variable expected in parameter list.");
2065 if (token != TokenName.COMMA) {
2072 if (!empty_allowed) {
2073 throwSyntaxError("Identifier expected in parameter list.");
2077 // private void optional_class_type() {
2082 // private void parameterDeclaration() {
2084 // //variable-reference
2085 // if (token == TokenName.AND) {
2087 // if (isVariable()) {
2090 // throwSyntaxError("Variable expected after reference operator '&'.");
2093 // //variable '=' constant
2094 // if (token == TokenName.VARIABLE) {
2096 // if (token == TokenName.EQUAL) {
2102 // // if (token == TokenName.THIS) {
2103 // // throwSyntaxError("Reserved word '$this' not allowed in parameter
2104 // // declaration.");
2108 private void labeledStatementList() {
2109 if (token != TokenName.CASE && token != TokenName.DEFAULT) {
2110 throwSyntaxError("'case' or 'default' expected.");
2113 if (token == TokenName.CASE) {
2115 expr_without_variable (true, null, true); // constant();
2116 if (token == TokenName.COLON || token == TokenName.SEMICOLON) {
2118 if (token == TokenName.RBRACE) {
2119 // empty case; assumes that the '}' token belongs to the wrapping
2120 // switch statement - #1371992
2123 if (token == TokenName.CASE || token == TokenName.DEFAULT) {
2124 // empty case statement ?
2129 // else if (token == TokenName.SEMICOLON) {
2131 // "':' expected after 'case' keyword (Found token: " +
2132 // scanner.toStringAction(token) + ")",
2133 // scanner.getCurrentTokenStartPosition(),
2134 // scanner.getCurrentTokenEndPosition(),
2137 // if (token == TokenName.CASE) { // empty case statement ?
2143 throwSyntaxError("':' character expected after 'case' constant (Found token: "
2144 + scanner.toStringAction(token) + ")");
2146 } else { // TokenName.DEFAULT
2148 if (token == TokenName.COLON || token == TokenName.SEMICOLON) {
2150 if (token == TokenName.RBRACE) {
2151 // empty default case; ; assumes that the '}' token belongs to the
2152 // wrapping switch statement - #1371992
2155 if (token != TokenName.CASE) {
2159 throwSyntaxError("':' character expected after 'default'.");
2162 } while (token == TokenName.CASE || token == TokenName.DEFAULT);
2165 private void ifStatementColon(IfStatement iState) {
2166 // T_IF '(' expr ')' ':' inner_statement_list new_elseif_list
2167 // new_else_single T_ENDIF ';'
2168 HashSet assignedVariableSet = null;
2170 Block b = inner_statement_list();
2171 iState.thenStatement = b;
2172 checkUnreachable(iState, b);
2174 assignedVariableSet = removeIfVariableSet();
2176 if (token == TokenName.ELSEIF) {
2178 pushIfVariableSet();
2179 new_elseif_list(iState);
2181 HashSet set = removeIfVariableSet();
2182 if (assignedVariableSet != null && set != null) {
2183 assignedVariableSet.addAll(set);
2188 pushIfVariableSet();
2189 new_else_single(iState);
2191 HashSet set = removeIfVariableSet();
2192 if (assignedVariableSet != null) {
2193 HashSet topSet = peekVariableSet();
2194 if (topSet != null) {
2198 topSet.addAll(assignedVariableSet);
2202 if (token != TokenName.ENDIF) {
2203 throwSyntaxError("'endif' expected.");
2206 if (token != TokenName.SEMICOLON && token != TokenName.INLINE_HTML) {
2207 reportSyntaxError("';' expected after if-statement.");
2208 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
2210 iState.sourceEnd = scanner.getCurrentTokenEndPosition();
2215 private void ifStatement(IfStatement iState) {
2216 // T_IF '(' expr ')' statement elseif_list else_single
2217 HashSet assignedVariableSet = null;
2219 pushIfVariableSet();
2220 Statement s = statement();
2221 iState.thenStatement = s;
2222 checkUnreachable(iState, s);
2224 assignedVariableSet = removeIfVariableSet();
2227 if (token == TokenName.ELSEIF) {
2229 pushIfVariableSet();
2230 elseif_list(iState);
2232 HashSet set = removeIfVariableSet();
2233 if (assignedVariableSet != null && set != null) {
2234 assignedVariableSet.addAll(set);
2239 pushIfVariableSet();
2240 else_single(iState);
2242 HashSet set = removeIfVariableSet();
2243 if (assignedVariableSet != null) {
2244 HashSet topSet = peekVariableSet();
2245 if (topSet != null) {
2249 topSet.addAll(assignedVariableSet);
2255 private void elseif_list(IfStatement iState) {
2257 // | elseif_list T_ELSEIF '(' expr ')' statement
2258 ArrayList conditionList = new ArrayList();
2259 ArrayList statementList = new ArrayList();
2262 while (token == TokenName.ELSEIF) {
2264 if (token == TokenName.LPAREN) {
2267 throwSyntaxError("'(' expected after 'elseif' keyword.");
2270 conditionList.add(e);
2271 if (token == TokenName.RPAREN) {
2274 throwSyntaxError("')' expected after 'elseif' condition.");
2277 statementList.add(s);
2278 checkUnreachable(iState, s);
2280 iState.elseifConditions = new Expression[conditionList.size()];
2281 iState.elseifStatements = new Statement[statementList.size()];
2282 conditionList.toArray(iState.elseifConditions);
2283 statementList.toArray(iState.elseifStatements);
2286 private void new_elseif_list(IfStatement iState) {
2288 // | new_elseif_list T_ELSEIF '(' expr ')' ':' inner_statement_list
2289 ArrayList conditionList = new ArrayList();
2290 ArrayList statementList = new ArrayList();
2293 while (token == TokenName.ELSEIF) {
2295 if (token == TokenName.LPAREN) {
2298 throwSyntaxError("'(' expected after 'elseif' keyword.");
2301 conditionList.add(e);
2302 if (token == TokenName.RPAREN) {
2305 throwSyntaxError("')' expected after 'elseif' condition.");
2307 if (token == TokenName.COLON) {
2310 throwSyntaxError("':' expected after 'elseif' keyword.");
2312 b = inner_statement_list();
2313 statementList.add(b);
2314 checkUnreachable(iState, b);
2316 iState.elseifConditions = new Expression[conditionList.size()];
2317 iState.elseifStatements = new Statement[statementList.size()];
2318 conditionList.toArray(iState.elseifConditions);
2319 statementList.toArray(iState.elseifStatements);
2322 private void else_single(IfStatement iState) {
2325 if (token == TokenName.ELSE) {
2327 Statement s = statement();
2328 iState.elseStatement = s;
2329 checkUnreachable(iState, s);
2331 iState.checkUnreachable = false;
2333 iState.sourceEnd = scanner.getCurrentTokenStartPosition();
2336 private void new_else_single(IfStatement iState) {
2338 // | T_ELSE ':' inner_statement_list
2339 if (token == TokenName.ELSE) {
2341 if (token == TokenName.COLON) {
2344 throwSyntaxError("':' expected after 'else' keyword.");
2346 Block b = inner_statement_list();
2347 iState.elseStatement = b;
2348 checkUnreachable(iState, b);
2350 iState.checkUnreachable = false;
2354 private Block inner_statement_list() {
2355 // inner_statement_list inner_statement
2357 return statementList();
2364 private void checkUnreachable(IfStatement iState, Statement s) {
2365 if (s instanceof Block) {
2366 Block b = (Block) s;
2367 if (b.statements == null || b.statements.length == 0) {
2368 iState.checkUnreachable = false;
2370 int off = b.statements.length - 1;
2371 if (!(b.statements[off] instanceof ReturnStatement)
2372 && !(b.statements[off] instanceof ContinueStatement)
2373 && !(b.statements[off] instanceof BreakStatement)) {
2374 if (!(b.statements[off] instanceof IfStatement)
2375 || !((IfStatement) b.statements[off]).checkUnreachable) {
2376 iState.checkUnreachable = false;
2381 if (!(s instanceof ReturnStatement)
2382 && !(s instanceof ContinueStatement)
2383 && !(s instanceof BreakStatement)) {
2384 if (!(s instanceof IfStatement)
2385 || !((IfStatement) s).checkUnreachable) {
2386 iState.checkUnreachable = false;
2392 // private void elseifStatementList() {
2394 // elseifStatement();
2396 // case TokenName.else:
2398 // if (token == TokenName.COLON) {
2400 // if (token != TokenName.endif) {
2405 // if (token == TokenName.if) { //'else if'
2408 // throwSyntaxError("':' expected after 'else'.");
2412 // case TokenName.elseif:
2421 // private void elseifStatement() {
2422 // if (token == TokenName.LPAREN) {
2425 // if (token != TokenName.RPAREN) {
2426 // throwSyntaxError("')' expected in else-if-statement.");
2429 // if (token != TokenName.COLON) {
2430 // throwSyntaxError("':' expected in else-if-statement.");
2433 // if (token != TokenName.endif) {
2439 private void switchStatement() {
2440 if (token == TokenName.COLON) {
2441 // ':' [labeled-statement-list] 'endswitch' ';'
2443 labeledStatementList();
2444 if (token != TokenName.ENDSWITCH) {
2445 throwSyntaxError("'endswitch' expected.");
2448 if (token != TokenName.SEMICOLON && token != TokenName.INLINE_HTML) {
2449 throwSyntaxError("';' expected after switch-statement.");
2453 // '{' [labeled-statement-list] '}'
2454 if (token != TokenName.LBRACE) {
2455 throwSyntaxError("'{' expected in switch statement.");
2458 if (token != TokenName.RBRACE) {
2459 labeledStatementList();
2461 if (token != TokenName.RBRACE) {
2462 throwSyntaxError("'}' expected in switch statement.");
2468 private void forStatement() {
2469 if (token == TokenName.COLON) {
2472 if (token != TokenName.ENDFOR) {
2473 throwSyntaxError("'endfor' expected.");
2476 if (token != TokenName.SEMICOLON && token != TokenName.INLINE_HTML) {
2477 throwSyntaxError("';' expected after for-statement.");
2485 private void whileStatement() {
2486 // ':' statement-list 'endwhile' ';'
2487 if (token == TokenName.COLON) {
2490 if (token != TokenName.ENDWHILE) {
2491 throwSyntaxError("'endwhile' expected.");
2494 if (token != TokenName.SEMICOLON && token != TokenName.INLINE_HTML) {
2495 throwSyntaxError("';' expected after while-statement.");
2503 private void foreachStatement() {
2504 if (token == TokenName.COLON) {
2507 if (token != TokenName.ENDFOREACH) {
2508 throwSyntaxError("'endforeach' expected.");
2511 if (token != TokenName.SEMICOLON && token != TokenName.INLINE_HTML) {
2512 throwSyntaxError("';' expected after foreach-statement.");
2520 // private void exitStatus() {
2521 // if (token == TokenName.LPAREN) {
2524 // throwSyntaxError("'(' expected in 'exit-status'.");
2526 // if (token != TokenName.RPAREN) {
2529 // if (token == TokenName.RPAREN) {
2532 // throwSyntaxError("')' expected after 'exit-status'.");
2538 private void namespacePath () {
2540 expr_without_variable (true, null, false);
2542 if (token == TokenName.BACKSLASH) {
2553 private void expressionList() {
2555 expr_without_variable (true, null, false);
2557 if (token == TokenName.COMMA) { // If it's a list of (comma separated) expressions
2558 getNextToken(); // read all in, untill no more found
2565 private Expression expr() {
2566 return expr_without_variable(true, null, false);
2571 * @param only_variable
2572 * @param initHandler
2574 private Expression expr_without_variable (boolean only_variable,
2575 UninitializedVariableHandler initHandler,
2576 boolean bColonAllowed) {
2577 int exprSourceStart = scanner.getCurrentTokenStartPosition();
2578 int exprSourceEnd = scanner.getCurrentTokenEndPosition();
2579 Expression expression = new Expression();
2581 expression.sourceStart = exprSourceStart;
2582 expression.sourceEnd = exprSourceEnd; // default, may be overwritten
2585 // internal_functions_in_yacc
2594 // | T_INC rw_variable
2595 // | T_DEC rw_variable
2596 // | T_INT_CAST expr
2597 // | T_DOUBLE_CAST expr
2598 // | T_STRING_CAST expr
2599 // | T_ARRAY_CAST expr
2600 // | T_OBJECT_CAST expr
2601 // | T_BOOL_CAST expr
2602 // | T_UNSET_CAST expr
2603 // | T_EXIT exit_expr
2605 // | T_ARRAY '(' array_pair_list ')'
2606 // | '`' encaps_list '`'
2607 // | T_LIST '(' assignment_list ')' '=' expr
2608 // | T_NEW class_name_reference ctor_arguments
2609 // | variable '=' expr
2610 // | variable '=' '&' variable
2611 // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2612 // | variable T_PLUS_EQUAL expr
2613 // | variable T_MINUS_EQUAL expr
2614 // | variable T_MUL_EQUAL expr
2615 // | variable T_DIV_EQUAL expr
2616 // | variable T_CONCAT_EQUAL expr
2617 // | variable T_MOD_EQUAL expr
2618 // | variable T_AND_EQUAL expr
2619 // | variable T_OR_EQUAL expr
2620 // | variable T_XOR_EQUAL expr
2621 // | variable T_SL_EQUAL expr
2622 // | variable T_SR_EQUAL expr
2623 // | rw_variable T_INC
2624 // | rw_variable T_DEC
2625 // | expr T_BOOLEAN_OR expr
2626 // | expr T_BOOLEAN_AND expr
2627 // | expr T_LOGICAL_OR expr
2628 // | expr T_LOGICAL_AND expr
2629 // | expr T_LOGICAL_XOR expr
2641 // | expr T_IS_IDENTICAL expr
2642 // | expr T_IS_NOT_IDENTICAL expr
2643 // | expr T_IS_EQUAL expr
2644 // | expr T_IS_NOT_EQUAL expr
2646 // | expr T_IS_SMALLER_OR_EQUAL expr
2648 // | expr T_IS_GREATER_OR_EQUAL expr
2649 // | expr T_INSTANCEOF class_name_reference
2650 // | expr '?' expr ':' expr
2651 if (Scanner.TRACE) {
2652 System.out.println("TRACE: expr_without_variable() PART 1");
2657 // T_ISSET '(' isset_variables ')'
2659 if (token != TokenName.LPAREN) {
2660 throwSyntaxError("'(' expected after keyword 'isset'");
2664 if (token != TokenName.RPAREN) {
2665 throwSyntaxError("')' expected after keyword 'isset'");
2671 if (token != TokenName.LPAREN) {
2672 throwSyntaxError("'(' expected after keyword 'empty'");
2675 variable(true, false);
2676 if (token != TokenName.RPAREN) {
2677 throwSyntaxError("')' expected after keyword 'empty'");
2686 internal_functions_in_yacc();
2693 if (token == TokenName.RPAREN) {
2696 throwSyntaxError("')' expected in expression.");
2706 // | T_INT_CAST expr
2707 // | T_DOUBLE_CAST expr
2708 // | T_STRING_CAST expr
2709 // | T_ARRAY_CAST expr
2710 // | T_OBJECT_CAST expr
2711 // | T_BOOL_CAST expr
2712 // | T_UNSET_CAST expr
2728 expr_without_variable (only_variable, initHandler, bColonAllowed);
2736 // | T_STRING_VARNAME
2738 // | T_START_HEREDOC encaps_list T_END_HEREDOC
2739 // | '`' encaps_list '`'
2741 // | '`' encaps_list '`'
2742 // case TokenName.EncapsedString0:
2743 // scanner.encapsedStringStack.push(new Character('`'));
2746 // if (token == TokenName.EncapsedString0) {
2749 // if (token != TokenName.EncapsedString0) {
2750 // throwSyntaxError("\'`\' expected at end of string" + "(Found
2752 // scanner.toStringAction(token) + " )");
2756 // scanner.encapsedStringStack.pop();
2760 // // | '\'' encaps_list '\''
2761 // case TokenName.EncapsedString1:
2762 // scanner.encapsedStringStack.push(new Character('\''));
2765 // exprSourceStart = scanner.getCurrentTokenStartPosition();
2766 // if (token == TokenName.EncapsedString1) {
2768 // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2769 // exprSourceStart, scanner
2770 // .getCurrentTokenEndPosition());
2773 // if (token != TokenName.EncapsedString1) {
2774 // throwSyntaxError("\'\'\' expected at end of string" + "(Found
2776 // + scanner.toStringAction(token) + " )");
2779 // StringLiteralSQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2780 // exprSourceStart, scanner
2781 // .getCurrentTokenEndPosition());
2785 // scanner.encapsedStringStack.pop();
2789 // //| '"' encaps_list '"'
2790 // case TokenName.EncapsedString2:
2791 // scanner.encapsedStringStack.push(new Character('"'));
2794 // exprSourceStart = scanner.getCurrentTokenStartPosition();
2795 // if (token == TokenName.EncapsedString2) {
2797 // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2798 // exprSourceStart, scanner
2799 // .getCurrentTokenEndPosition());
2802 // if (token != TokenName.EncapsedString2) {
2803 // throwSyntaxError("'\"' expected at end of string" + "(Found
2805 // scanner.toStringAction(token) + " )");
2808 // StringLiteralDQ(scanner.getCurrentStringLiteralSource(exprSourceStart),
2809 // exprSourceStart, scanner
2810 // .getCurrentTokenEndPosition());
2814 // scanner.encapsedStringStack.pop();
2818 case STRINGDOUBLEQUOTE:
2819 expression = new StringLiteralDQ (scanner.getCurrentStringLiteralSource(),
2820 scanner.getCurrentTokenStartPosition(),
2821 scanner.getCurrentTokenEndPosition());
2824 case STRINGSINGLEQUOTE:
2825 expression = new StringLiteralSQ (scanner.getCurrentStringLiteralSource(),
2826 scanner.getCurrentTokenStartPosition(),
2827 scanner.getCurrentTokenEndPosition());
2830 case INTEGERLITERAL:
2832 case STRINGINTERPOLATED:
2844 // T_ARRAY '(' array_pair_list ')'
2846 if (token == TokenName.LPAREN) {
2848 if (token == TokenName.RPAREN) {
2853 if (token != TokenName.RPAREN) {
2854 throwSyntaxError("')' or ',' expected after keyword 'array'"
2856 + scanner.toStringAction(token) + ")");
2860 throwSyntaxError("'(' expected after keyword 'array'"
2861 + "(Found token: " + scanner.toStringAction(token)
2866 // | T_LIST '(' assignment_list ')' '=' expr
2868 if (token == TokenName.LPAREN) {
2871 if (token != TokenName.RPAREN) {
2872 throwSyntaxError("')' expected after 'list' keyword.");
2875 if (token != TokenName.EQUAL) {
2876 throwSyntaxError("'=' expected after 'list' keyword.");
2881 throwSyntaxError("'(' expected after 'list' keyword.");
2885 // | T_NEW class_name_reference ctor_arguments
2887 Expression typeRef = class_name_reference();
2889 if (typeRef != null) {
2890 expression = typeRef;
2893 // | T_INC rw_variable
2894 // | T_DEC rw_variable
2900 // | variable '=' expr
2901 // | variable '=' '&' variable
2902 // | variable '=' '&' T_NEW class_name_reference ctor_arguments
2903 // | variable T_PLUS_EQUAL expr
2904 // | variable T_MINUS_EQUAL expr
2905 // | variable T_MUL_EQUAL expr
2906 // | variable T_DIV_EQUAL expr
2907 // | variable T_CONCAT_EQUAL expr
2908 // | variable T_MOD_EQUAL expr
2909 // | variable T_AND_EQUAL expr
2910 // | variable T_OR_EQUAL expr
2911 // | variable T_XOR_EQUAL expr
2912 // | variable T_SL_EQUAL expr
2913 // | variable T_SR_EQUAL expr
2914 // | rw_variable T_INC
2915 // | rw_variable T_DEC
2919 Expression lhs = null;
2920 boolean rememberedVar = false;
2922 if (token == TokenName.IDENTIFIER) {
2923 lhs = identifier(true, true, bColonAllowed);
2930 lhs = variable (true, true);
2937 lhs instanceof FieldReference &&
2938 token != TokenName.EQUAL &&
2939 token != TokenName.PLUS_EQUAL &&
2940 token != TokenName.MINUS_EQUAL &&
2941 token != TokenName.MULTIPLY_EQUAL &&
2942 token != TokenName.DIVIDE_EQUAL &&
2943 token != TokenName.DOT_EQUAL &&
2944 token != TokenName.REMAINDER_EQUAL &&
2945 token != TokenName.AND_EQUAL &&
2946 token != TokenName.OR_EQUAL &&
2947 token != TokenName.XOR_EQUAL &&
2948 token != TokenName.RIGHT_SHIFT_EQUAL &&
2949 token != TokenName.LEFT_SHIFT_EQUAL) {
2951 FieldReference ref = (FieldReference) lhs;
2953 if (!containsVariableSet(ref.token)) {
2954 if (null == initHandler || initHandler.reportError()) {
2955 problemReporter.uninitializedLocalVariable(
2956 new String(ref.token), ref.sourceStart,
2957 ref.sourceEnd, referenceContext,
2958 compilationUnit.compilationResult);
2960 addVariableSet(ref.token);
2967 if (lhs != null && lhs instanceof FieldReference) {
2968 addVariableSet(((FieldReference) lhs).token);
2971 if (token == TokenName.OP_AND) {
2973 if (token == TokenName.NEW) {
2974 // | variable '=' '&' T_NEW class_name_reference
2977 SingleTypeReference classRef = class_name_reference();
2979 if (classRef != null) {
2981 && lhs instanceof FieldReference) {
2983 // $var = & new Object();
2984 if (fMethodVariables != null) {
2985 VariableInfo lhsInfo = new VariableInfo(
2986 ((FieldReference) lhs).sourceStart);
2987 lhsInfo.reference = classRef;
2988 lhsInfo.typeIdentifier = classRef.token;
2989 fMethodVariables.put(new String(
2990 ((FieldReference) lhs).token),
2992 rememberedVar = true;
2997 Expression rhs = variable(false, false);
2998 if (rhs != null && rhs instanceof FieldReference
3000 && lhs instanceof FieldReference) {
3003 if (fMethodVariables != null) {
3004 VariableInfo rhsInfo = (VariableInfo) fMethodVariables
3005 .get(((FieldReference) rhs).token);
3007 && rhsInfo.reference != null) {
3008 VariableInfo lhsInfo = new VariableInfo(
3009 ((FieldReference) lhs).sourceStart);
3010 lhsInfo.reference = rhsInfo.reference;
3011 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
3012 fMethodVariables.put(new String(
3013 ((FieldReference) lhs).token),
3015 rememberedVar = true;
3021 Expression rhs = expr_without_variable (only_variable, initHandler, bColonAllowed);
3023 if (lhs != null && lhs instanceof FieldReference) {
3024 if (rhs != null && rhs instanceof FieldReference) {
3027 if (fMethodVariables != null) {
3028 VariableInfo rhsInfo = (VariableInfo) fMethodVariables
3029 .get(((FieldReference) rhs).token);
3031 && rhsInfo.reference != null) {
3032 VariableInfo lhsInfo = new VariableInfo(
3033 ((FieldReference) lhs).sourceStart);
3034 lhsInfo.reference = rhsInfo.reference;
3035 lhsInfo.typeIdentifier = rhsInfo.typeIdentifier;
3036 fMethodVariables.put(new String(
3037 ((FieldReference) lhs).token),
3039 rememberedVar = true;
3042 } else if (rhs != null
3043 && rhs instanceof SingleTypeReference) {
3045 // $var = new Object();
3046 if (fMethodVariables != null) {
3047 VariableInfo lhsInfo = new VariableInfo(
3048 ((FieldReference) lhs).sourceStart);
3049 lhsInfo.reference = (SingleTypeReference) rhs;
3050 lhsInfo.typeIdentifier = ((SingleTypeReference) rhs).token;
3051 fMethodVariables.put(new String(
3052 ((FieldReference) lhs).token),
3054 rememberedVar = true;
3059 if (rememberedVar == false && lhs != null
3060 && lhs instanceof FieldReference) {
3061 if (fMethodVariables != null) {
3062 VariableInfo lhsInfo = new VariableInfo (((FieldReference) lhs).sourceStart);
3063 fMethodVariables.put (new String (((FieldReference) lhs).token), lhsInfo);
3071 case MULTIPLY_EQUAL:
3074 case REMAINDER_EQUAL:
3078 case RIGHT_SHIFT_EQUAL:
3079 case LEFT_SHIFT_EQUAL:
3080 if (lhs != null && lhs instanceof FieldReference) {
3081 addVariableSet(((FieldReference) lhs).token);
3084 expr_without_variable (only_variable, initHandler, bColonAllowed);
3091 if (!only_variable) {
3092 throwSyntaxError("Variable expression not allowed (found token '"
3093 + scanner.toStringAction(token) + "').");
3098 } // case DOLLAR, VARIABLE, IDENTIFIER: switch token
3102 MethodDeclaration methodDecl = new MethodDeclaration (this.compilationUnit.compilationResult);
3103 methodDecl.declarationSourceStart = scanner.getCurrentTokenStartPosition();
3104 methodDecl.modifiers = AccDefault;
3105 methodDecl.type = MethodDeclaration.FUNCTION_DEFINITION;
3108 functionDefinition(methodDecl);
3110 int sourceEnd = methodDecl.sourceEnd;
3111 if (sourceEnd <= 0 || methodDecl.declarationSourceStart > sourceEnd) {
3112 sourceEnd = methodDecl.declarationSourceStart + 1;
3114 methodDecl.declarationSourceEnd = sourceEnd;
3115 methodDecl.sourceEnd = sourceEnd;
3120 if (token != TokenName.INLINE_HTML) {
3121 if (token.compareTo (TokenName.KEYWORD) > 0) {
3125 // System.out.println(scanner.getCurrentTokenStartPosition());
3126 // System.out.println(scanner.getCurrentTokenEndPosition());
3128 throwSyntaxError("Error in expression (found token '"
3129 + scanner.toStringAction(token) + "').");
3135 if (Scanner.TRACE) {
3136 System.out.println("TRACE: expr_without_variable() PART 2");
3139 // | expr T_BOOLEAN_OR expr
3140 // | expr T_BOOLEAN_AND expr
3141 // | expr T_LOGICAL_OR expr
3142 // | expr T_LOGICAL_AND expr
3143 // | expr T_LOGICAL_XOR expr
3155 // | expr T_IS_IDENTICAL expr
3156 // | expr T_IS_NOT_IDENTICAL expr
3157 // | expr T_IS_EQUAL expr
3158 // | expr T_IS_NOT_EQUAL expr
3160 // | expr T_IS_SMALLER_OR_EQUAL expr
3162 // | expr T_IS_GREATER_OR_EQUAL expr
3167 expression = new OR_OR_Expression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.OR_OR);
3171 expression = new AND_AND_Expression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.AND_AND);
3175 expression = new EqualExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.EQUAL_EQUAL);
3179 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.AND);
3183 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.OR);
3187 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.XOR);
3191 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.AND);
3195 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.OR);
3199 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.XOR);
3203 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.TWIDDLE);
3207 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.PLUS);
3211 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.MINUS);
3215 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.MULTIPLY);
3219 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.DIVIDE);
3223 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.REMAINDER);
3227 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.LEFT_SHIFT);
3231 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.RIGHT_SHIFT);
3233 case EQUAL_EQUAL_EQUAL:
3235 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.EQUAL_EQUAL);
3237 case NOT_EQUAL_EQUAL:
3239 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.NOT_EQUAL);
3243 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.NOT_EQUAL);
3247 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.LESS);
3251 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.LESS_EQUAL);
3255 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.GREATER);
3259 expression = new BinaryExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.GREATER_EQUAL);
3261 // | expr T_INSTANCEOF class_name_reference
3262 // | expr '?' expr ':' expr
3265 TypeReference classRef = class_name_reference();
3267 if (classRef != null) {
3268 expression = new InstanceOfExpression (expression, classRef, OperatorIds.INSTANCEOF);
3269 expression.sourceStart = exprSourceStart;
3270 expression.sourceEnd = scanner.getCurrentTokenEndPosition();
3276 expression = new EqualExpression(expression, expr_without_variable (only_variable, initHandler, bColonAllowed), OperatorIds.TERNARY_SHORT);
3281 Expression valueIfTrue = expr_without_variable (true, null, true);
3282 if (token != TokenName.COLON) {
3283 throwSyntaxError("':' expected in conditional expression.");
3286 Expression valueIfFalse = expr();
3288 expression = new ConditionalExpression (expression, valueIfTrue, valueIfFalse);
3294 } catch (SyntaxError e) {
3295 // try to find next token after expression with errors:
3296 if (token == TokenName.SEMICOLON) {
3301 if (token == TokenName.RBRACE ||
3302 token == TokenName.RPAREN ||
3303 token == TokenName.RBRACKET) {
3314 private SingleTypeReference class_name_reference() {
3315 // class_name_reference:
3317 // | dynamic_class_name_reference
3318 SingleTypeReference ref = null;
3319 if (Scanner.TRACE) {
3320 System.out.println("TRACE: class_name_reference()");
3322 if (token == TokenName.IDENTIFIER) {
3323 ref = new SingleTypeReference(scanner.getCurrentIdentifierSource(),
3324 scanner.getCurrentTokenStartPosition());
3325 int pos = scanner.currentPosition;
3327 if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) {
3328 // Not terminated by T_STRING, reduce to dynamic_class_name_reference
3329 scanner.currentPosition = pos;
3330 token = TokenName.IDENTIFIER;
3332 dynamic_class_name_reference();
3336 dynamic_class_name_reference();
3341 private void dynamic_class_name_reference() {
3342 // dynamic_class_name_reference:
3343 // base_variable T_OBJECT_OPERATOR object_property
3344 // dynamic_class_name_variable_properties
3346 if (Scanner.TRACE) {
3347 System.out.println("TRACE: dynamic_class_name_reference()");
3349 base_variable(true);
3350 if (token == TokenName.MINUS_GREATER) {
3353 dynamic_class_name_variable_properties();
3357 private void dynamic_class_name_variable_properties() {
3358 // dynamic_class_name_variable_properties:
3359 // dynamic_class_name_variable_properties
3360 // dynamic_class_name_variable_property
3362 if (Scanner.TRACE) {
3364 .println("TRACE: dynamic_class_name_variable_properties()");
3366 while (token == TokenName.MINUS_GREATER) {
3367 dynamic_class_name_variable_property();
3371 private void dynamic_class_name_variable_property() {
3372 // dynamic_class_name_variable_property:
3373 // T_OBJECT_OPERATOR object_property
3374 if (Scanner.TRACE) {
3375 System.out.println("TRACE: dynamic_class_name_variable_property()");
3377 if (token == TokenName.MINUS_GREATER) {
3383 private void ctor_arguments() {
3386 // | '(' function_call_parameter_list ')'
3387 if (token == TokenName.LPAREN) {
3389 if (token == TokenName.RPAREN) {
3393 non_empty_function_call_parameter_list();
3394 if (token != TokenName.RPAREN) {
3395 throwSyntaxError("')' expected in ctor_arguments.");
3401 private void assignment_list() {
3403 // assignment_list ',' assignment_list_element
3404 // | assignment_list_element
3406 assignment_list_element();
3407 if (token != TokenName.COMMA) {
3414 private void assignment_list_element() {
3415 // assignment_list_element:
3417 // | T_LIST '(' assignment_list ')'
3419 if (token == TokenName.VARIABLE) {
3420 variable(true, false);
3421 } else if (token == TokenName.DOLLAR) {
3422 variable(false, false);
3423 } else if (token == TokenName.IDENTIFIER) {
3424 identifier(true, true, false);
3426 if (token == TokenName.LIST) {
3428 if (token == TokenName.LPAREN) {
3431 if (token != TokenName.RPAREN) {
3432 throwSyntaxError("')' expected after 'list' keyword.");
3436 throwSyntaxError("'(' expected after 'list' keyword.");
3442 private void array_pair_list() {
3445 // | non_empty_array_pair_list possible_comma
3446 non_empty_array_pair_list();
3447 if (token == TokenName.COMMA) {
3452 private void non_empty_array_pair_list() {
3453 // non_empty_array_pair_list:
3454 // non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr
3455 // | non_empty_array_pair_list ',' expr
3456 // | expr T_DOUBLE_ARROW expr
3458 // | non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
3459 // | non_empty_array_pair_list ',' '&' w_variable
3460 // | expr T_DOUBLE_ARROW '&' w_variable
3463 if (token == TokenName.OP_AND) {
3465 variable(true, false);
3468 if (token == TokenName.OP_AND) {
3470 variable(true, false);
3471 } else if (token == TokenName.EQUAL_GREATER) {
3473 if (token == TokenName.OP_AND) {
3475 variable(true, false);
3481 if (token != TokenName.COMMA) {
3485 if (token == TokenName.RPAREN) {
3491 // private void variableList() {
3494 // if (token == TokenName.COMMA) {
3501 private Expression variable_without_objects(boolean lefthandside,
3502 boolean ignoreVar) {
3503 // variable_without_objects:
3504 // reference_variable
3505 // | simple_indirect_reference reference_variable
3506 if (Scanner.TRACE) {
3507 System.out.println("TRACE: variable_without_objects()");
3509 while (token == TokenName.DOLLAR) {
3512 return reference_variable(lefthandside, ignoreVar);
3515 private Expression function_call(boolean lefthandside, boolean ignoreVar) {
3517 // T_STRING '(' function_call_parameter_list ')'
3518 // | class_constant '(' function_call_parameter_list ')'
3519 // | static_member '(' function_call_parameter_list ')'
3520 // | variable_without_objects '(' function_call_parameter_list ')'
3521 char[] defineName = null;
3522 char[] ident = null;
3525 Expression ref = null;
3526 if (Scanner.TRACE) {
3527 System.out.println("TRACE: function_call()");
3529 if (token == TokenName.IDENTIFIER) {
3530 ident = scanner.getCurrentIdentifierSource();
3532 startPos = scanner.getCurrentTokenStartPosition();
3533 endPos = scanner.getCurrentTokenEndPosition();
3536 case PAAMAYIM_NEKUDOTAYIM:
3540 if (token == TokenName.IDENTIFIER) {
3545 variable_without_objects(true, false);
3550 ref = variable_without_objects(lefthandside, ignoreVar);
3552 if (token != TokenName.LPAREN) {
3553 if (defineName != null) {
3554 // does this identifier contain only uppercase characters?
3555 if (defineName.length == 3) {
3556 if (defineName[0] == 'd' &&
3557 defineName[1] == 'i' &&
3558 defineName[2] == 'e') {
3561 } else if (defineName.length == 4) {
3562 if (defineName[0] == 't' &&
3563 defineName[1] == 'r' &&
3564 defineName[2] == 'u' &&
3565 defineName[3] == 'e') {
3567 } else if (defineName[0] == 'n' &&
3568 defineName[1] == 'u' &&
3569 defineName[2] == 'l' &&
3570 defineName[3] == 'l') {
3573 } else if (defineName.length == 5) {
3574 if (defineName[0] == 'f' &&
3575 defineName[1] == 'a' &&
3576 defineName[2] == 'l' &&
3577 defineName[3] == 's' &&
3578 defineName[4] == 'e') {
3582 if (defineName != null) {
3583 for (int i = 0; i < defineName.length; i++) {
3584 if (Character.isLowerCase(defineName[i])) {
3585 problemReporter.phpUppercaseIdentifierWarning(
3586 startPos, endPos, referenceContext,
3587 compilationUnit.compilationResult);
3595 if (token == TokenName.RPAREN) {
3600 non_empty_function_call_parameter_list();
3602 if (token != TokenName.RPAREN) {
3603 String functionName;
3605 if (ident == null) {
3606 functionName = new String(" ");
3608 functionName = new String(ident);
3611 throwSyntaxError("')' expected in function call (" + functionName + ").");
3618 private void non_empty_function_call_parameter_list() {
3619 this.non_empty_function_call_parameter_list(null);
3622 // private void function_call_parameter_list() {
3623 // function_call_parameter_list:
3624 // non_empty_function_call_parameter_list { $$ = $1; }
3627 private void non_empty_function_call_parameter_list(String functionName) {
3628 // non_empty_function_call_parameter_list:
3629 // expr_without_variable
3632 // | non_empty_function_call_parameter_list ',' expr_without_variable
3633 // | non_empty_function_call_parameter_list ',' variable
3634 // | non_empty_function_call_parameter_list ',' '&' w_variable
3635 if (Scanner.TRACE) {
3637 .println("TRACE: non_empty_function_call_parameter_list()");
3639 UninitializedVariableHandler initHandler = new UninitializedVariableHandler();
3640 initHandler.setFunctionName(functionName);
3642 initHandler.incrementArgumentCount();
3643 if (token == TokenName.OP_AND) {
3647 // if (token == TokenName.Identifier || token ==
3648 // TokenName.Variable
3649 // || token == TokenName.DOLLAR) {
3652 expr_without_variable(true, initHandler, false);
3655 if (token != TokenName.COMMA) {
3662 private void fully_qualified_class_name() {
3663 if (token == TokenName.IDENTIFIER) {
3666 throwSyntaxError("Class name expected.");
3670 private void static_member() {
3672 // fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM
3673 // variable_without_objects
3674 if (Scanner.TRACE) {
3675 System.out.println("TRACE: static_member()");
3677 fully_qualified_class_name();
3678 if (token != TokenName.PAAMAYIM_NEKUDOTAYIM) {
3679 throwSyntaxError("'::' expected after class name (static_member).");
3682 variable_without_objects(false, false);
3685 private Expression base_variable_with_function_calls(boolean lefthandside,
3686 boolean ignoreVar) {
3687 // base_variable_with_function_calls:
3690 if (Scanner.TRACE) {
3691 System.out.println("TRACE: base_variable_with_function_calls()");
3693 return function_call(lefthandside, ignoreVar);
3696 private Expression base_variable(boolean lefthandside) {
3698 // reference_variable
3699 // | simple_indirect_reference reference_variable
3701 Expression ref = null;
3702 if (Scanner.TRACE) {
3703 System.out.println("TRACE: base_variable()");
3705 if (token == TokenName.IDENTIFIER) {
3708 while (token == TokenName.DOLLAR) {
3711 reference_variable(lefthandside, false);
3716 // private void simple_indirect_reference() {
3717 // // simple_indirect_reference:
3719 // //| simple_indirect_reference '$'
3721 private Expression reference_variable(boolean lefthandside,
3722 boolean ignoreVar) {
3723 // reference_variable:
3724 // reference_variable '[' dim_offset ']'
3725 // | reference_variable '{' expr '}'
3726 // | compound_variable
3727 Expression ref = null;
3728 if (Scanner.TRACE) {
3729 System.out.println("TRACE: reference_variable()");
3731 ref = compound_variable(lefthandside, ignoreVar);
3733 if (token == TokenName.LBRACE) {
3737 if (token != TokenName.RBRACE) {
3738 throwSyntaxError("'}' expected in reference variable.");
3741 } else if (token == TokenName.LBRACKET) {
3742 // To remove "ref = null;" here, is probably better than the
3744 // commented in #1368081 - axelcl
3746 if (token != TokenName.RBRACKET) {
3749 if (token != TokenName.RBRACKET) {
3750 throwSyntaxError("']' expected in reference variable.");
3761 private Expression compound_variable(boolean lefthandside, boolean ignoreVar) {
3762 // compound_variable:
3764 // | '$' '{' expr '}'
3765 if (Scanner.TRACE) {
3766 System.out.println("TRACE: compound_variable()");
3768 if (token == TokenName.VARIABLE) {
3769 if (!lefthandside) {
3770 if (!containsVariableSet()) {
3771 // reportSyntaxError("The local variable " + new
3772 // String(scanner.getCurrentIdentifierSource())
3773 // + " may not have been initialized");
3774 problemReporter.uninitializedLocalVariable(new String(
3775 scanner.getCurrentIdentifierSource()), scanner
3776 .getCurrentTokenStartPosition(), scanner
3777 .getCurrentTokenEndPosition(), referenceContext,
3778 compilationUnit.compilationResult);
3785 FieldReference ref = new FieldReference(scanner
3786 .getCurrentIdentifierSource(), scanner
3787 .getCurrentTokenStartPosition());
3791 // because of simple_indirect_reference
3792 while (token == TokenName.DOLLAR) {
3795 if (token != TokenName.LBRACE) {
3796 reportSyntaxError("'{' expected after compound variable token '$'.");
3801 if (token != TokenName.RBRACE) {
3802 throwSyntaxError("'}' expected after compound variable token '$'.");
3807 } // private void dim_offset() { // // dim_offset: // // /* empty */
3812 private void object_property() {
3815 // | variable_without_objects
3816 if (Scanner.TRACE) {
3817 System.out.println("TRACE: object_property()");
3819 if (token == TokenName.VARIABLE || token == TokenName.DOLLAR) {
3820 variable_without_objects(false, false);
3826 private void object_dim_list() {
3828 // object_dim_list '[' dim_offset ']'
3829 // | object_dim_list '{' expr '}'
3831 if (Scanner.TRACE) {
3832 System.out.println("TRACE: object_dim_list()");
3836 if (token == TokenName.LBRACE) {
3839 if (token != TokenName.RBRACE) {
3840 throwSyntaxError("'}' expected in object_dim_list.");
3843 } else if (token == TokenName.LBRACKET) {
3845 if (token == TokenName.RBRACKET) {
3850 if (token != TokenName.RBRACKET) {
3851 throwSyntaxError("']' expected in object_dim_list.");
3860 private void variable_name() {
3864 if (Scanner.TRACE) {
3865 System.out.println("TRACE: variable_name()");
3867 if (token == TokenName.IDENTIFIER || token.compareTo (TokenName.KEYWORD) > 0) {
3868 if (token.compareTo (TokenName.KEYWORD) > 0) {
3869 // TODO show a warning "Keyword used as variable" ?
3873 if (token != TokenName.LBRACE) {
3874 throwSyntaxError("'{' expected in variable name.");
3878 if (token != TokenName.RBRACE) {
3879 throwSyntaxError("'}' expected in variable name.");
3885 private void r_variable() {
3886 variable(false, false);
3889 private void w_variable(boolean lefthandside) {
3890 variable(lefthandside, false);
3893 private void rw_variable() {
3894 variable(false, false);
3897 private Expression variable(boolean lefthandside, boolean ignoreVar) {
3899 // base_variable_with_function_calls T_OBJECT_OPERATOR
3900 // object_property method_or_not variable_properties
3901 // | base_variable_with_function_calls
3902 Expression ref = base_variable_with_function_calls(lefthandside,
3904 if (token == TokenName.MINUS_GREATER) {
3909 variable_properties();
3911 else if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) {
3916 variable_properties();
3922 private void variable_properties() {
3923 // variable_properties:
3924 // variable_properties variable_property
3926 while (token == TokenName.MINUS_GREATER) {
3927 variable_property();
3931 private void variable_property() {
3932 // variable_property:
3933 // T_OBJECT_OPERATOR object_property method_or_not
3934 if (Scanner.TRACE) {
3935 System.out.println("TRACE: variable_property()");
3937 if (token == TokenName.MINUS_GREATER) {
3942 throwSyntaxError("'->' expected in variable_property.");
3949 * base_variable_with_function_calls T_OBJECT_OPERATOR
3950 * object_property method_or_not variable_properties
3951 * | base_variable_with_function_calls
3953 * Expression ref = function_call(lefthandside, ignoreVar);
3956 * T_STRING '(' function_call_parameter_list ')'
3957 * | class_constant '(' function_call_parameter_list ')'
3958 * | static_member '(' function_call_parameter_list ')'
3959 * | variable_without_objects '(' function_call_parameter_list ')'
3961 * @param lefthandside
3966 private Expression identifier (boolean lefthandside, boolean ignoreVar, boolean bColonAllowed) {
3967 char[] defineName = null;
3968 char[] ident = null;
3971 Expression ref = null;
3973 if (Scanner.TRACE) {
3974 System.out.println("TRACE: function_call()");
3977 if (token == TokenName.IDENTIFIER) {
3978 ident = scanner.getCurrentIdentifierSource();
3980 startPos = scanner.getCurrentTokenStartPosition();
3981 endPos = scanner.getCurrentTokenEndPosition();
3983 getNextToken(); // Get the token after the identifier
3989 case MULTIPLY_EQUAL:
3992 case REMAINDER_EQUAL:
3996 case RIGHT_SHIFT_EQUAL:
3997 case LEFT_SHIFT_EQUAL:
3998 String error = "Assignment operator '"
3999 + scanner.toStringAction(token)
4000 + "' not allowed after identifier '"
4002 + "' (use 'define(...)' to define constants).";
4003 reportSyntaxError(error);
4007 if (token == TokenName.COLON) { // If it's a ':', the identifier is a label
4012 if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) { // '::'
4015 getNextToken (); // Read the identifier
4017 if (token == TokenName.IDENTIFIER) { // class _constant
4020 else { // static member:
4021 variable_without_objects (true, false);
4025 else if (token == TokenName.BACKSLASH) { // '\' namespace path separator
4028 if (token == TokenName.IDENTIFIER) { // If it's an identifier
4029 getNextToken (); // go for the next token
4031 else { // It's not an identifiere, something wrong
4032 throwSyntaxError ("an identifier expected after '\\' ");
4040 else { // Token is not an identifier
4041 ref = variable_without_objects(lefthandside, ignoreVar);
4044 if (token == TokenName.LPAREN) { // If token is '('
4047 if (token == TokenName.RPAREN) { // If token is ')'
4052 String functionName;
4054 if (ident == null) {
4055 functionName = new String(" ");
4057 functionName = new String(ident);
4060 non_empty_function_call_parameter_list(functionName); // Get the parameter list for the given function name
4062 if (token != TokenName.RPAREN) { // If token is not a ')', throw error
4063 throwSyntaxError ("')' expected in function call (" + functionName + ").");
4066 getNextToken(); // Get the token after ')'
4069 else { // It's not an '('
4070 if (defineName != null) { // does this identifier contain only uppercase characters?
4071 if (defineName.length == 3) { // If it's a 'die'
4072 if (defineName[0] == 'd' &&
4073 defineName[1] == 'i' &&
4074 defineName[2] == 'e') {
4078 else if (defineName.length == 4) { // If it's a 'true'
4079 if (defineName[0] == 't' &&
4080 defineName[1] == 'r' &&
4081 defineName[2] == 'u' &&
4082 defineName[3] == 'e') {
4085 else if (defineName[0] == 'n' && // If it's a 'null'
4086 defineName[1] == 'u' &&
4087 defineName[2] == 'l' &&
4088 defineName[3] == 'l') {
4092 else if (defineName.length == 5) { // If it's a 'false'
4093 if (defineName[0] == 'f' &&
4094 defineName[1] == 'a' &&
4095 defineName[2] == 'l' &&
4096 defineName[3] == 's' &&
4097 defineName[4] == 'e') {
4102 if (defineName != null) {
4103 for (int i = 0; i < defineName.length; i++) {
4104 if (Character.isLowerCase (defineName[i])) {
4105 problemReporter.phpUppercaseIdentifierWarning (startPos, endPos, referenceContext,
4106 compilationUnit.compilationResult);
4112 // TODO is this ok ?
4114 // throwSyntaxError("'(' expected in function call.");
4117 if (token == TokenName.MINUS_GREATER) {
4122 variable_properties();
4125 // A colon is only allowed here if it is an expression read after a '?'
4127 if ((token == TokenName.COLON) &&
4129 throwSyntaxError ("No ':' allowed");
4135 private void method_or_not() {
4137 // '(' function_call_parameter_list ')'
4139 if (Scanner.TRACE) {
4140 System.out.println("TRACE: method_or_not()");
4142 if (token == TokenName.LPAREN) {
4144 if (token == TokenName.RPAREN) {
4148 non_empty_function_call_parameter_list();
4149 if (token != TokenName.RPAREN) {
4150 throwSyntaxError("')' expected in method_or_not.");
4156 private void exit_expr() {
4160 if (token != TokenName.LPAREN) {
4164 if (token == TokenName.RPAREN) {
4169 if (token != TokenName.RPAREN) {
4170 throwSyntaxError("')' expected after keyword 'exit'");
4175 // private void encaps_list() {
4176 // // encaps_list encaps_var
4177 // // | encaps_list T_STRING
4178 // // | encaps_list T_NUM_STRING
4179 // // | encaps_list T_ENCAPSED_AND_WHITESPACE
4180 // // | encaps_list T_CHARACTER
4181 // // | encaps_list T_BAD_CHARACTER
4182 // // | encaps_list '['
4183 // // | encaps_list ']'
4184 // // | encaps_list '{'
4185 // // | encaps_list '}'
4186 // // | encaps_list T_OBJECT_OPERATOR
4190 // case TokenName.STRING:
4193 // case TokenName.LBRACE:
4194 // // scanner.encapsedStringStack.pop();
4197 // case TokenName.RBRACE:
4198 // // scanner.encapsedStringStack.pop();
4201 // case TokenName.LBRACKET:
4202 // // scanner.encapsedStringStack.pop();
4205 // case TokenName.RBRACKET:
4206 // // scanner.encapsedStringStack.pop();
4209 // case TokenName.MINUS_GREATER:
4210 // // scanner.encapsedStringStack.pop();
4213 // case TokenName.Variable:
4214 // case TokenName.DOLLAR_LBRACE:
4215 // case TokenName.LBRACE_DOLLAR:
4219 // char encapsedChar = ((Character)
4220 // scanner.encapsedStringStack.peek()).charValue();
4221 // if (encapsedChar == '$') {
4222 // scanner.encapsedStringStack.pop();
4223 // encapsedChar = ((Character)
4224 // scanner.encapsedStringStack.peek()).charValue();
4225 // switch (encapsedChar) {
4227 // if (token == TokenName.EncapsedString0) {
4230 // token = TokenName.STRING;
4233 // if (token == TokenName.EncapsedString1) {
4236 // token = TokenName.STRING;
4239 // if (token == TokenName.EncapsedString2) {
4242 // token = TokenName.STRING;
4251 // private void encaps_var() {
4253 // // | T_VARIABLE '[' encaps_var_offset ']'
4254 // // | T_VARIABLE T_OBJECT_OPERATOR T_STRING
4255 // // | T_DOLLAR_OPEN_CURLY_BRACES expr '}'
4256 // // | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
4257 // // | T_CURLY_OPEN variable '}'
4259 // case TokenName.Variable:
4261 // if (token == TokenName.LBRACKET) {
4263 // expr(); //encaps_var_offset();
4264 // if (token != TokenName.RBRACKET) {
4265 // throwSyntaxError("']' expected after variable.");
4267 // // scanner.encapsedStringStack.pop();
4270 // } else if (token == TokenName.MINUS_GREATER) {
4272 // if (token != TokenName.Identifier) {
4273 // throwSyntaxError("Identifier expected after '->'.");
4275 // // scanner.encapsedStringStack.pop();
4279 // // // scanner.encapsedStringStack.pop();
4280 // // int tempToken = TokenName.STRING;
4281 // // if (!scanner.encapsedStringStack.isEmpty()
4282 // // && (token == TokenName.EncapsedString0
4283 // // || token == TokenName.EncapsedString1
4284 // // || token == TokenName.EncapsedString2 || token ==
4285 // // TokenName.ERROR)) {
4286 // // char encapsedChar = ((Character)
4287 // // scanner.encapsedStringStack.peek())
4289 // // switch (token) {
4290 // // case TokenName.EncapsedString0 :
4291 // // if (encapsedChar == '`') {
4292 // // tempToken = TokenName.EncapsedString0;
4295 // // case TokenName.EncapsedString1 :
4296 // // if (encapsedChar == '\'') {
4297 // // tempToken = TokenName.EncapsedString1;
4300 // // case TokenName.EncapsedString2 :
4301 // // if (encapsedChar == '"') {
4302 // // tempToken = TokenName.EncapsedString2;
4305 // // case TokenName.ERROR :
4306 // // if (scanner.source[scanner.currentPosition - 1] == '\\') {
4307 // // scanner.currentPosition--;
4308 // // getNextToken();
4313 // // token = tempToken;
4316 // case TokenName.DOLLAR_LBRACE:
4318 // if (token == TokenName.DOLLAR_LBRACE) {
4320 // } else if (token == TokenName.Identifier) {
4322 // if (token == TokenName.LBRACKET) {
4324 // // if (token == TokenName.RBRACKET) {
4325 // // getNextToken();
4328 // if (token != TokenName.RBRACKET) {
4329 // throwSyntaxError("']' expected after '${'.");
4337 // if (token != TokenName.RBRACE) {
4338 // throwSyntaxError("'}' expected.");
4342 // case TokenName.LBRACE_DOLLAR:
4344 // if (token == TokenName.LBRACE_DOLLAR) {
4346 // } else if (token == TokenName.Identifier || token > TokenName.KEYWORD) {
4348 // if (token == TokenName.LBRACKET) {
4350 // // if (token == TokenName.RBRACKET) {
4351 // // getNextToken();
4354 // if (token != TokenName.RBRACKET) {
4355 // throwSyntaxError("']' expected.");
4359 // } else if (token == TokenName.MINUS_GREATER) {
4361 // if (token != TokenName.Identifier && token != TokenName.Variable) {
4362 // throwSyntaxError("String or Variable token expected.");
4365 // if (token == TokenName.LBRACKET) {
4367 // // if (token == TokenName.RBRACKET) {
4368 // // getNextToken();
4371 // if (token != TokenName.RBRACKET) {
4372 // throwSyntaxError("']' expected after '${'.");
4378 // // if (token != TokenName.RBRACE) {
4379 // // throwSyntaxError("'}' expected after '{$'.");
4381 // // // scanner.encapsedStringStack.pop();
4382 // // getNextToken();
4385 // if (token != TokenName.RBRACE) {
4386 // throwSyntaxError("'}' expected.");
4388 // // scanner.encapsedStringStack.pop();
4395 // private void encaps_var_offset() {
4397 // // | T_NUM_STRING
4400 // case TokenName.STRING:
4403 // case TokenName.IntegerLiteral:
4406 // case TokenName.Variable:
4409 // case TokenName.Identifier:
4413 // throwSyntaxError("Variable or String token expected.");
4421 private void internal_functions_in_yacc() {
4424 // case TokenName.isset:
4425 // // T_ISSET '(' isset_variables ')'
4427 // if (token != TokenName.LPAREN) {
4428 // throwSyntaxError("'(' expected after keyword 'isset'");
4431 // isset_variables();
4432 // if (token != TokenName.RPAREN) {
4433 // throwSyntaxError("')' expected after keyword 'isset'");
4437 // case TokenName.empty:
4438 // // T_EMPTY '(' variable ')'
4440 // if (token != TokenName.LPAREN) {
4441 // throwSyntaxError("'(' expected after keyword 'empty'");
4445 // if (token != TokenName.RPAREN) {
4446 // throwSyntaxError("')' expected after keyword 'empty'");
4452 checkFileName(token);
4455 // T_INCLUDE_ONCE expr
4456 checkFileName(token);
4459 // T_EVAL '(' expr ')'
4461 if (token != TokenName.LPAREN) {
4462 throwSyntaxError("'(' expected after keyword 'eval'");
4466 if (token != TokenName.RPAREN) {
4467 throwSyntaxError("')' expected after keyword 'eval'");
4473 checkFileName(token);
4476 // T_REQUIRE_ONCE expr
4477 checkFileName(token);
4483 * Parse and check the include file name
4485 * @param includeToken
4487 private void checkFileName(TokenName includeToken) {
4488 // <include-token> expr
4489 int start = scanner.getCurrentTokenStartPosition();
4490 boolean hasLPAREN = false;
4492 if (token == TokenName.LPAREN) {
4496 Expression expression = expr();
4498 if (token == TokenName.RPAREN) {
4501 throwSyntaxError("')' expected for keyword '"
4502 + scanner.toStringAction(includeToken) + "'");
4505 char[] currTokenSource = scanner.getCurrentTokenSource(start);
4507 if (scanner.compilationUnit != null) {
4508 IResource resource = scanner.compilationUnit.getResource();
4509 if (resource != null && resource instanceof IFile) {
4510 file = (IFile) resource;
4514 tokens = new char[1][];
4515 tokens[0] = currTokenSource;
4517 ImportReference impt = new ImportReference(tokens, currTokenSource,
4518 start, scanner.getCurrentTokenEndPosition(), false);
4519 impt.declarationSourceEnd = impt.sourceEnd;
4520 impt.declarationEnd = impt.declarationSourceEnd;
4521 // endPosition is just before the ;
4522 impt.declarationSourceStart = start;
4523 includesList.add(impt);
4525 if (expression instanceof StringLiteral) {
4526 StringLiteral literal = (StringLiteral) expression;
4527 char[] includeName = literal.source();
4528 if (includeName.length == 0) {
4529 reportSyntaxError("Empty filename after keyword '"
4530 + scanner.toStringAction(includeToken) + "'",
4531 literal.sourceStart, literal.sourceStart + 1);
4533 String includeNameString = new String(includeName);
4534 if (literal instanceof StringLiteralDQ) {
4535 if (includeNameString.indexOf('$') >= 0) {
4536 // assuming that the filename contains a variable => no
4541 if (includeNameString.startsWith("http://")) {
4542 // assuming external include location
4546 // check the filename:
4547 // System.out.println(new
4548 // String(compilationUnit.getFileName())+" - "+
4549 // expression.toStringExpression());
4550 IProject project = file.getProject();
4551 if (project != null) {
4552 IPath path = PHPFileUtil.determineFilePath(
4553 includeNameString, file, project);
4556 // SyntaxError: "File: << >> doesn't exist in project."
4557 String[] args = { expression.toStringExpression(),
4558 project.getFullPath().toString() };
4559 problemReporter.phpIncludeNotExistWarning(args,
4560 literal.sourceStart, literal.sourceEnd,
4562 compilationUnit.compilationResult);
4565 String filePath = path.toString();
4566 String ext = file.getRawLocation()
4567 .getFileExtension();
4568 int fileExtensionLength = ext == null ? 0 : ext
4571 IFile f = PHPFileUtil.createFile(path, project);
4573 impt.tokens = CharOperation.splitOn('/', filePath
4574 .toCharArray(), 0, filePath.length()
4575 - fileExtensionLength);
4577 } catch (Exception e) {
4578 // the file is outside of the workspace
4586 private void isset_variables() {
4588 // | isset_variables ','
4589 if (token == TokenName.RPAREN) {
4590 throwSyntaxError("Variable expected after keyword 'isset'");
4593 variable(true, false);
4594 if (token == TokenName.COMMA) {
4602 private boolean common_scalar() {
4606 // | T_CONSTANT_ENCAPSED_STRING
4613 case INTEGERLITERAL:
4619 case STRINGDOUBLEQUOTE:
4622 case STRINGSINGLEQUOTE:
4625 case STRINGINTERPOLATED:
4647 // private void scalar() {
4650 // // | T_STRING_VARNAME
4651 // // | class_constant
4652 // // | common_scalar
4653 // // | '"' encaps_list '"'
4654 // // | '\'' encaps_list '\''
4655 // // | T_START_HEREDOC encaps_list T_END_HEREDOC
4656 // throwSyntaxError("Not yet implemented (scalar).");
4659 private void static_scalar() {
4660 // static_scalar: /* compile-time evaluated scalars */
4663 // | '+' static_scalar
4664 // | '-' static_scalar
4665 // | T_ARRAY '(' static_array_pair_list ')'
4666 // | static_class_constant
4667 if (common_scalar()) {
4673 // static_class_constant:
4674 // T_STRING T_PAAMAYIM_NEKUDOTAYIM T_STRING
4675 if (token == TokenName.PAAMAYIM_NEKUDOTAYIM) {
4677 if (token == TokenName.IDENTIFIER) {
4680 throwSyntaxError("Identifier expected after '::' operator.");
4684 case ENCAPSEDSTRING0:
4686 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4687 while (scanner.currentCharacter != '`') {
4688 if (scanner.currentCharacter == '\\') {
4689 scanner.currentPosition++;
4691 scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4694 } catch (IndexOutOfBoundsException e) {
4695 throwSyntaxError("'`' expected at end of static string.");
4698 // case TokenName.EncapsedString1:
4700 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4701 // while (scanner.currentCharacter != '\'') {
4702 // if (scanner.currentCharacter == '\\') {
4703 // scanner.currentPosition++;
4705 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4708 // } catch (IndexOutOfBoundsException e) {
4709 // throwSyntaxError("'\'' expected at end of static string.");
4712 // case TokenName.EncapsedString2:
4714 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4715 // while (scanner.currentCharacter != '"') {
4716 // if (scanner.currentCharacter == '\\') {
4717 // scanner.currentPosition++;
4719 // scanner.currentCharacter = scanner.source[scanner.currentPosition++];
4722 // } catch (IndexOutOfBoundsException e) {
4723 // throwSyntaxError("'\"' expected at end of static string.");
4726 case STRINGSINGLEQUOTE:
4729 case STRINGDOUBLEQUOTE:
4742 if (token != TokenName.LPAREN) {
4743 throwSyntaxError("'(' expected after keyword 'array'");
4746 if (token == TokenName.RPAREN) {
4750 non_empty_static_array_pair_list();
4751 if (token != TokenName.RPAREN) {
4752 throwSyntaxError("')' or ',' expected after keyword 'array'");
4756 // case TokenName.null :
4759 // case TokenName.false :
4762 // case TokenName.true :
4766 throwSyntaxError("Static scalar/constant expected.");
4770 private void non_empty_static_array_pair_list() {
4771 // non_empty_static_array_pair_list:
4772 // non_empty_static_array_pair_list ',' static_scalar T_DOUBLE_ARROW
4774 // | non_empty_static_array_pair_list ',' static_scalar
4775 // | static_scalar T_DOUBLE_ARROW static_scalar
4779 if (token == TokenName.EQUAL_GREATER) {
4783 if (token != TokenName.COMMA) {
4787 if (token == TokenName.RPAREN) {
4793 // public void reportSyntaxError() { //int act, int currentKind, int
4794 // // stateStackTop) {
4795 // /* remember current scanner position */
4796 // int startPos = scanner.startPosition;
4797 // int currentPos = scanner.currentPosition;
4799 // this.checkAndReportBracketAnomalies(problemReporter());
4800 // /* reset scanner where it was */
4801 // scanner.startPosition = startPos;
4802 // scanner.currentPosition = currentPos;
4805 public static final int RoundBracket = 0;
4807 public static final int SquareBracket = 1;
4809 public static final int CurlyBracket = 2;
4811 public static final int BracketKinds = 3;
4813 protected int[] nestedMethod; // the ptr is nestedType
4815 protected int nestedType, dimensions;
4817 // variable set stack
4818 final static int VariableStackIncrement = 10;
4820 HashMap fTypeVariables = null;
4822 HashMap fMethodVariables = null;
4824 ArrayList fStackUnassigned = new ArrayList();
4827 final static int AstStackIncrement = 100;
4829 protected int astPtr;
4831 protected ASTNode[] astStack = new ASTNode[AstStackIncrement];
4833 protected int astLengthPtr;
4835 protected int[] astLengthStack;
4837 ASTNode[] noAstNodes = new ASTNode[AstStackIncrement];
4839 public CompilationUnitDeclaration compilationUnit; /*
4844 protected ReferenceContext referenceContext;
4846 protected ProblemReporter problemReporter;
4848 protected CompilerOptions options;
4850 private ArrayList includesList;
4852 // protected CompilationResult compilationResult;
4854 * Returns this parser's problem reporter initialized with its reference
4855 * context. Also it is assumed that a problem is going to be reported, so
4856 * initializes the compilation result's line positions.
4858 public ProblemReporter problemReporter() {
4859 if (scanner.recordLineSeparator) {
4860 compilationUnit.compilationResult.lineSeparatorPositions = scanner
4863 problemReporter.referenceContext = referenceContext;
4864 return problemReporter;
4868 * Reconsider the entire source looking for inconsistencies in {} () []
4870 // public boolean checkAndReportBracketAnomalies(ProblemReporter
4871 // problemReporter) {
4872 // scanner.wasAcr = false;
4873 // boolean anomaliesDetected = false;
4875 // char[] source = scanner.source;
4876 // int[] leftCount = { 0, 0, 0 };
4877 // int[] rightCount = { 0, 0, 0 };
4878 // int[] depths = { 0, 0, 0 };
4879 // int[][] leftPositions = new int[][] { new int[10], new int[10], new
4882 // int[][] leftDepths = new int[][] { new int[10], new int[10], new int[10]
4884 // int[][] rightPositions = new int[][] { new int[10], new int[10], new
4886 // int[][] rightDepths = new int[][] { new int[10], new int[10], new int[10]
4888 // scanner.currentPosition = scanner.initialPosition; //starting
4890 // // (first-zero-based
4892 // while (scanner.currentPosition < scanner.eofPosition) { //loop for
4897 // // ---------Consume white space and handles
4898 // // startPosition---------
4899 // boolean isWhiteSpace;
4901 // scanner.startPosition = scanner.currentPosition;
4902 // // if (((scanner.currentCharacter =
4903 // // source[scanner.currentPosition++]) == '\\') &&
4904 // // (source[scanner.currentPosition] == 'u')) {
4905 // // isWhiteSpace = scanner.jumpOverUnicodeWhiteSpace();
4907 // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
4908 // (scanner.currentCharacter == '\n'))) {
4909 // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
4910 // // only record line positions we have not
4912 // scanner.pushLineSeparator();
4915 // isWhiteSpace = CharOperation.isWhitespace(scanner.currentCharacter);
4917 // } while (isWhiteSpace && (scanner.currentPosition <
4918 // scanner.eofPosition));
4919 // // -------consume token until } is found---------
4920 // switch (scanner.currentCharacter) {
4922 // int index = leftCount[CurlyBracket]++;
4923 // if (index == leftPositions[CurlyBracket].length) {
4924 // System.arraycopy(leftPositions[CurlyBracket], 0,
4925 // (leftPositions[CurlyBracket] = new int[index * 2]), 0, index);
4926 // System.arraycopy(leftDepths[CurlyBracket], 0, (leftDepths[CurlyBracket] =
4927 // new int[index * 2]), 0, index);
4929 // leftPositions[CurlyBracket][index] = scanner.startPosition;
4930 // leftDepths[CurlyBracket][index] = depths[CurlyBracket]++;
4934 // int index = rightCount[CurlyBracket]++;
4935 // if (index == rightPositions[CurlyBracket].length) {
4936 // System.arraycopy(rightPositions[CurlyBracket], 0,
4937 // (rightPositions[CurlyBracket] = new int[index * 2]), 0, index);
4938 // System.arraycopy(rightDepths[CurlyBracket], 0, (rightDepths[CurlyBracket]
4940 // new int[index * 2]), 0, index);
4942 // rightPositions[CurlyBracket][index] = scanner.startPosition;
4943 // rightDepths[CurlyBracket][index] = --depths[CurlyBracket];
4947 // int index = leftCount[RoundBracket]++;
4948 // if (index == leftPositions[RoundBracket].length) {
4949 // System.arraycopy(leftPositions[RoundBracket], 0,
4950 // (leftPositions[RoundBracket] = new int[index * 2]), 0, index);
4951 // System.arraycopy(leftDepths[RoundBracket], 0, (leftDepths[RoundBracket] =
4952 // new int[index * 2]), 0, index);
4954 // leftPositions[RoundBracket][index] = scanner.startPosition;
4955 // leftDepths[RoundBracket][index] = depths[RoundBracket]++;
4959 // int index = rightCount[RoundBracket]++;
4960 // if (index == rightPositions[RoundBracket].length) {
4961 // System.arraycopy(rightPositions[RoundBracket], 0,
4962 // (rightPositions[RoundBracket] = new int[index * 2]), 0, index);
4963 // System.arraycopy(rightDepths[RoundBracket], 0, (rightDepths[RoundBracket]
4965 // new int[index * 2]), 0, index);
4967 // rightPositions[RoundBracket][index] = scanner.startPosition;
4968 // rightDepths[RoundBracket][index] = --depths[RoundBracket];
4972 // int index = leftCount[SquareBracket]++;
4973 // if (index == leftPositions[SquareBracket].length) {
4974 // System.arraycopy(leftPositions[SquareBracket], 0,
4975 // (leftPositions[SquareBracket] = new int[index * 2]), 0, index);
4976 // System.arraycopy(leftDepths[SquareBracket], 0, (leftDepths[SquareBracket]
4978 // new int[index * 2]), 0, index);
4980 // leftPositions[SquareBracket][index] = scanner.startPosition;
4981 // leftDepths[SquareBracket][index] = depths[SquareBracket]++;
4985 // int index = rightCount[SquareBracket]++;
4986 // if (index == rightPositions[SquareBracket].length) {
4987 // System.arraycopy(rightPositions[SquareBracket], 0,
4988 // (rightPositions[SquareBracket] = new int[index * 2]), 0, index);
4989 // System.arraycopy(rightDepths[SquareBracket], 0,
4990 // (rightDepths[SquareBracket]
4991 // = new int[index * 2]), 0, index);
4993 // rightPositions[SquareBracket][index] = scanner.startPosition;
4994 // rightDepths[SquareBracket][index] = --depths[SquareBracket];
4998 // if (scanner.getNextChar('\\')) {
4999 // scanner.scanEscapeCharacter();
5000 // } else { // consume next character
5001 // scanner.unicodeAsBackSlash = false;
5002 // // if (((scanner.currentCharacter =
5003 // // source[scanner.currentPosition++]) ==
5005 // // (source[scanner.currentPosition] ==
5007 // // scanner.getNextUnicodeChar();
5009 // if (scanner.withoutUnicodePtr != 0) {
5010 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
5011 // scanner.currentCharacter;
5015 // scanner.getNextChar('\'');
5019 // // consume next character
5020 // scanner.unicodeAsBackSlash = false;
5021 // // if (((scanner.currentCharacter =
5022 // // source[scanner.currentPosition++]) == '\\') &&
5023 // // (source[scanner.currentPosition] == 'u')) {
5024 // // scanner.getNextUnicodeChar();
5026 // if (scanner.withoutUnicodePtr != 0) {
5027 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
5028 // scanner.currentCharacter;
5031 // while (scanner.currentCharacter != '"') {
5032 // if (scanner.currentCharacter == '\r') {
5033 // if (source[scanner.currentPosition] == '\n')
5034 // scanner.currentPosition++;
5035 // break; // the string cannot go further that
5038 // if (scanner.currentCharacter == '\n') {
5039 // break; // the string cannot go further that
5042 // if (scanner.currentCharacter == '\\') {
5043 // scanner.scanEscapeCharacter();
5045 // // consume next character
5046 // scanner.unicodeAsBackSlash = false;
5047 // // if (((scanner.currentCharacter =
5048 // // source[scanner.currentPosition++]) == '\\')
5049 // // && (source[scanner.currentPosition] == 'u'))
5051 // // scanner.getNextUnicodeChar();
5053 // if (scanner.withoutUnicodePtr != 0) {
5054 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
5055 // scanner.currentCharacter;
5062 // if ((test = scanner.getNextChar('/', '*')) == 0) { //line
5064 // //get the next char
5065 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
5067 // && (source[scanner.currentPosition] == 'u')) {
5068 // //-------------unicode traitement
5070 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
5071 // scanner.currentPosition++;
5072 // while (source[scanner.currentPosition] == 'u') {
5073 // scanner.currentPosition++;
5075 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
5077 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
5080 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
5083 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
5085 // || c4 < 0) { //error
5089 // scanner.currentCharacter = 'A';
5090 // } //something different from \n and \r
5092 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
5095 // while (scanner.currentCharacter != '\r' && scanner.currentCharacter !=
5097 // //get the next char
5098 // scanner.startPosition = scanner.currentPosition;
5099 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
5101 // && (source[scanner.currentPosition] == 'u')) {
5102 // //-------------unicode traitement
5104 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
5105 // scanner.currentPosition++;
5106 // while (source[scanner.currentPosition] == 'u') {
5107 // scanner.currentPosition++;
5109 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
5111 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
5114 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
5117 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
5119 // || c4 < 0) { //error
5123 // scanner.currentCharacter = 'A';
5124 // } //something different from \n
5127 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
5131 // if (scanner.recordLineSeparator && ((scanner.currentCharacter == '\r') ||
5132 // (scanner.currentCharacter == '\n'))) {
5133 // if (scanner.lineEnds[scanner.linePtr] < scanner.startPosition) {
5134 // // only record line positions we
5135 // // have not recorded yet
5136 // scanner.pushLineSeparator();
5137 // if (this.scanner.taskTags != null) {
5138 // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
5140 // .getCurrentTokenEndPosition());
5146 // if (test > 0) { //traditional and annotation
5148 // boolean star = false;
5149 // // consume next character
5150 // scanner.unicodeAsBackSlash = false;
5151 // // if (((scanner.currentCharacter =
5152 // // source[scanner.currentPosition++]) ==
5154 // // (source[scanner.currentPosition] ==
5156 // // scanner.getNextUnicodeChar();
5158 // if (scanner.withoutUnicodePtr != 0) {
5159 // scanner.withoutUnicodeBuffer[++scanner.withoutUnicodePtr] =
5160 // scanner.currentCharacter;
5163 // if (scanner.currentCharacter == '*') {
5166 // //get the next char
5167 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
5169 // && (source[scanner.currentPosition] == 'u')) {
5170 // //-------------unicode traitement
5172 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
5173 // scanner.currentPosition++;
5174 // while (source[scanner.currentPosition] == 'u') {
5175 // scanner.currentPosition++;
5177 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
5179 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
5182 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
5185 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
5187 // || c4 < 0) { //error
5191 // scanner.currentCharacter = 'A';
5192 // } //something different from * and /
5194 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
5197 // //loop until end of comment */
5198 // while ((scanner.currentCharacter != '/') || (!star)) {
5199 // star = scanner.currentCharacter == '*';
5201 // if (((scanner.currentCharacter = source[scanner.currentPosition++]) ==
5203 // && (source[scanner.currentPosition] == 'u')) {
5204 // //-------------unicode traitement
5206 // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
5207 // scanner.currentPosition++;
5208 // while (source[scanner.currentPosition] == 'u') {
5209 // scanner.currentPosition++;
5211 // if ((c1 = Character.getNumericValue(source[scanner.currentPosition++])) >
5213 // || (c2 = Character.getNumericValue(source[scanner.currentPosition++])) >
5216 // || (c3 = Character.getNumericValue(source[scanner.currentPosition++])) >
5219 // || (c4 = Character.getNumericValue(source[scanner.currentPosition++])) >
5221 // || c4 < 0) { //error
5225 // scanner.currentCharacter = 'A';
5226 // } //something different from * and
5229 // scanner.currentCharacter = (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
5233 // if (this.scanner.taskTags != null) {
5234 // this.scanner.checkTaskTag(this.scanner.getCurrentTokenStartPosition(),
5235 // this.scanner.getCurrentTokenEndPosition());
5242 // if (Scanner.isPHPIdentifierStart(scanner.currentCharacter)) {
5243 // scanner.scanIdentifierOrKeyword(false);
5246 // if (Character.isDigit(scanner.currentCharacter)) {
5247 // scanner.scanNumber(false);
5251 // //-----------------end switch while
5252 // // try--------------------
5253 // } catch (IndexOutOfBoundsException e) {
5254 // break; // read until EOF
5255 // } catch (InvalidInputException e) {
5256 // return false; // no clue
5259 // if (scanner.recordLineSeparator) {
5260 // compilationUnit.compilationResult.lineSeparatorPositions =
5261 // scanner.getLineEnds();
5263 // // check placement anomalies against other kinds of brackets
5264 // for (int kind = 0; kind < BracketKinds; kind++) {
5265 // for (int leftIndex = leftCount[kind] - 1; leftIndex >= 0; leftIndex--) {
5266 // int start = leftPositions[kind][leftIndex]; // deepest
5268 // // find matching closing bracket
5269 // int depth = leftDepths[kind][leftIndex];
5271 // for (int i = 0; i < rightCount[kind]; i++) {
5272 // int pos = rightPositions[kind][i];
5273 // // want matching bracket further in source with same
5275 // if ((pos > start) && (depth == rightDepths[kind][i])) {
5280 // if (end < 0) { // did not find a good closing match
5281 // problemReporter.unmatchedBracket(start, referenceContext,
5282 // compilationUnit.compilationResult);
5285 // // check if even number of opening/closing other brackets
5286 // // in between this pair of brackets
5288 // for (int otherKind = 0; (balance == 0) && (otherKind < BracketKinds);
5290 // for (int i = 0; i < leftCount[otherKind]; i++) {
5291 // int pos = leftPositions[otherKind][i];
5292 // if ((pos > start) && (pos < end))
5295 // for (int i = 0; i < rightCount[otherKind]; i++) {
5296 // int pos = rightPositions[otherKind][i];
5297 // if ((pos > start) && (pos < end))
5300 // if (balance != 0) {
5301 // problemReporter.unmatchedBracket(start, referenceContext,
5302 // compilationUnit.compilationResult); //bracket
5308 // // too many opening brackets ?
5309 // for (int i = rightCount[kind]; i < leftCount[kind]; i++) {
5310 // anomaliesDetected = true;
5311 // problemReporter.unmatchedBracket(leftPositions[kind][leftCount[kind] - i
5313 // 1], referenceContext,
5314 // compilationUnit.compilationResult);
5316 // // too many closing brackets ?
5317 // for (int i = leftCount[kind]; i < rightCount[kind]; i++) {
5318 // anomaliesDetected = true;
5319 // problemReporter.unmatchedBracket(rightPositions[kind][i],
5320 // referenceContext,
5321 // compilationUnit.compilationResult);
5323 // if (anomaliesDetected)
5326 // return anomaliesDetected;
5327 // } catch (ArrayStoreException e) { // jdk1.2.2 jit bug
5328 // return anomaliesDetected;
5329 // } catch (NullPointerException e) { // jdk1.2.2 jit bug
5330 // return anomaliesDetected;
5333 // protected void pushOnAstLengthStack(int pos) {
5335 // astLengthStack[++astLengthPtr] = pos;
5336 // } catch (IndexOutOfBoundsException e) {
5337 // int oldStackLength = astLengthStack.length;
5338 // int[] oldPos = astLengthStack;
5339 // astLengthStack = new int[oldStackLength + StackIncrement];
5340 // System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
5341 // astLengthStack[astLengthPtr] = pos;
5345 protected void pushOnAstStack(ASTNode node) {
5347 * add a new obj on top of the ast stack
5350 astStack[++astPtr] = node;
5351 } catch (IndexOutOfBoundsException e) {
5352 int oldStackLength = astStack.length;
5353 ASTNode[] oldStack = astStack;
5354 astStack = new ASTNode[oldStackLength + AstStackIncrement];
5355 System.arraycopy(oldStack, 0, astStack, 0, oldStackLength);
5356 astPtr = oldStackLength;
5357 astStack[astPtr] = node;
5360 astLengthStack[++astLengthPtr] = 1;
5361 } catch (IndexOutOfBoundsException e) {
5362 int oldStackLength = astLengthStack.length;
5363 int[] oldPos = astLengthStack;
5364 astLengthStack = new int[oldStackLength + AstStackIncrement];
5365 System.arraycopy(oldPos, 0, astLengthStack, 0, oldStackLength);
5366 astLengthStack[astLengthPtr] = 1;
5370 protected void resetModifiers() {
5371 this.modifiers = AccDefault;
5372 this.modifiersSourceStart = -1; // <-- see comment into
5373 // modifiersFlag(int)
5374 this.scanner.commentPtr = -1;
5377 protected void consumePackageDeclarationName(IFile file) {
5378 // create a package name similar to java package names
5380 //String projectPath = ProjectPrefUtil.getDocumentRoot(file.getProject())
5382 //String filePath = file.getFullPath().toString();
5384 String ext = file.getFileExtension();
5385 int fileExtensionLength = ext == null ? 0 : ext.length() + 1;
5386 ImportReference impt;
5389 /*if (filePath.startsWith(projectPath)) {
5390 tokens = CharOperation.splitOn('/', filePath.toCharArray(),
5391 projectPath.length() + 1, filePath.length()
5392 - fileExtensionLength);
5394 String name = file.getName();
5395 tokens = new char[1][];
5396 tokens[0] = name.substring(0, name.length() - fileExtensionLength)
5400 this.compilationUnit.currentPackage = impt = new ImportReference(
5401 tokens, new char[0], 0, 0, true);
5403 impt.declarationSourceStart = 0;
5404 impt.declarationSourceEnd = 0;
5405 impt.declarationEnd = 0;
5406 // endPosition is just before the ;
5410 public final static String[] GLOBALS = { "$this", "$_COOKIE", "$_ENV",
5411 "$_FILES", "$_GET", "$GLOBALS", "$_POST", "$_REQUEST", "$_SESSION",
5417 private void pushFunctionVariableSet() {
5418 HashSet set = new HashSet();
5419 if (fStackUnassigned.isEmpty()) {
5420 for (int i = 0; i < GLOBALS.length; i++) {
5421 set.add(GLOBALS[i]);
5424 fStackUnassigned.add(set);
5427 private void pushIfVariableSet() {
5428 if (!fStackUnassigned.isEmpty()) {
5429 HashSet set = new HashSet();
5430 fStackUnassigned.add(set);
5434 private HashSet removeIfVariableSet() {
5435 if (!fStackUnassigned.isEmpty()) {
5436 return (HashSet) fStackUnassigned
5437 .remove(fStackUnassigned.size() - 1);
5443 * Returns the <i>set of assigned variables </i> returns null if no Set is
5444 * defined at the current scanner position
5446 private HashSet peekVariableSet() {
5447 if (!fStackUnassigned.isEmpty()) {
5448 return (HashSet) fStackUnassigned.get(fStackUnassigned.size() - 1);
5454 * add the current identifier source to the <i>set of assigned variables
5459 private void addVariableSet(HashSet set) {
5461 set.add(new String(scanner.getCurrentTokenSource()));
5466 * add the current identifier source to the <i>set of assigned variables
5470 private void addVariableSet() {
5471 HashSet set = peekVariableSet();
5473 set.add(new String(scanner.getCurrentTokenSource()));
5478 * add the current identifier source to the <i>set of assigned variables
5482 private void addVariableSet(char[] token) {
5483 HashSet set = peekVariableSet();
5485 set.add(new String(token));
5490 * check if the current identifier source is in the <i>set of assigned
5491 * variables </i> Returns true, if no set is defined for the current scanner
5495 private boolean containsVariableSet() {
5496 return containsVariableSet(scanner.getCurrentTokenSource());
5499 private boolean containsVariableSet(char[] token) {
5501 if (!fStackUnassigned.isEmpty()) {
5503 String str = new String(token);
5504 for (int i = 0; i < fStackUnassigned.size(); i++) {
5505 set = (HashSet) fStackUnassigned.get(i);
5506 if (set.contains(str)) {