X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Variable.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Variable.java index 69163ca..2a76db4 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Variable.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Variable.java @@ -1,9 +1,8 @@ package net.sourceforge.phpdt.internal.compiler.ast; -import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage; - import java.util.List; -import java.util.ArrayList; + +import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage; /** * A variable. @@ -18,13 +17,41 @@ public class Variable extends AbstractVariable { /** A variable inside ($$varname). */ private AbstractVariable variable; + /** the variable is defined like this ${expression} */ + private Expression expression; + + public static final String _GET = "_GET"; + public static final String _POST = "_POST"; + public static final String _REQUEST = "_REQUEST"; + public static final String _SERVER = "_SERVER"; + public static final String _SESSION = "_SESSION"; + public static final String _this = "this"; + public static final String GLOBALS = "GLOBALS"; + public static final String _COOKIE = "_COOKIE"; + public static final String _FILES = "_FILES"; + public static final String _ENV = "_ENV"; + + /** Here is an array of all superglobals variables and the special "this". */ + public static final String[] SPECIAL_VARS = {_GET, + _POST, + _REQUEST, + _SERVER, + _SESSION, + _this, + GLOBALS, + _COOKIE, + _FILES, + _ENV}; + /** * Create a new simple variable. * @param name the name * @param sourceStart the starting position * @param sourceEnd the ending position */ - public Variable(final String name, final int sourceStart, final int sourceEnd) { + public Variable(final String name, + final int sourceStart, + final int sourceEnd) { super(sourceStart, sourceEnd); this.name = name; } @@ -35,12 +62,27 @@ public class Variable extends AbstractVariable { * @param sourceStart the starting position * @param sourceEnd the ending position */ - public Variable(final AbstractVariable variable, final int sourceStart, final int sourceEnd) { + public Variable(final AbstractVariable variable, + final int sourceStart, + final int sourceEnd) { super(sourceStart, sourceEnd); this.variable = variable; } /** + * Create a special variable ($$toto for example). + * @param expression the variable contained + * @param sourceStart the starting position + * @param sourceEnd the ending position + */ + public Variable(final Expression expression, + final int sourceStart, + final int sourceEnd) { + super(sourceStart, sourceEnd); + this.expression = expression; + } + + /** * Return the expression as String. * @return the expression */ @@ -49,39 +91,41 @@ public class Variable extends AbstractVariable { } public String getName() { - if (variable == null) { + if (name != null) { return name; } - return variable.toStringExpression(); + if (variable != null) { + return variable.toStringExpression(); + } + return "{" + expression.toStringExpression() + "}"; } /** * Get the variables from outside (parameters, globals ...) - * @return the variables from outside */ - public List getOutsideVariable() { - return new ArrayList(1); + public void getOutsideVariable(final List list) { } /** * get the modified variables. - * @return the variables modified */ - public List getModifiedVariable() { - return new ArrayList(1); + public void getModifiedVariable(final List list) { } /** * Get the variables used. - * @return the variables used */ - public List getUsedVariable() { - final ArrayList list = new ArrayList(1); - if (name == null) { - list.add(new VariableUsage(variable.getName(), getSourceStart())); + public void getUsedVariable(final List list) { + final String varName; + if (name != null) { + varName = name; + } else if (variable != null) { + varName = variable.getName(); } else { - list.add(new VariableUsage(name, getSourceStart())); + varName = expression.toStringExpression();//todo : do a better thing like evaluate this ?? + } + if (!arrayContains(SPECIAL_VARS, name)) { + list.add(new VariableUsage(varName, sourceStart)); } - return list; } }