X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ReturnStatement.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ReturnStatement.java index ea695e4..13822d7 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ReturnStatement.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ReturnStatement.java @@ -1,22 +1,56 @@ package net.sourceforge.phpdt.internal.compiler.ast; +import java.util.List; +import java.util.ArrayList; + /** + * A return statement. * @author Matthieu Casanova */ public class ReturnStatement extends Statement { public Expression expression; - public ReturnStatement(Expression expression, int sourceStart, int sourceEnd) { + public ReturnStatement(final Expression expression, final int sourceStart, final int sourceEnd) { super(sourceStart, sourceEnd); this.expression = expression; } - public String toString(int tab) { + public String toString(final int tab) { final String s = tabString(tab); if (expression == null) { - return s + "return " + expression.toStringExpression(); + return s + "return";//$NON-NLS-1$ + } + return s + "return " + expression.toStringExpression();//$NON-NLS-1$ + } + + /** + * Get the variables from outside (parameters, globals ...) + * @return the variables from outside + */ + public List getOutsideVariable() { + return new ArrayList(); + } + + /** + * get the modified variables. + * @return the variables modified + */ + public List getModifiedVariable() { + if (expression == null) { + return new ArrayList(); + } + return expression.getModifiedVariable(); + } + + /** + * Get the variables used. + * @return the variables used + */ + public List getUsedVariable() { + if (expression == null) { + return new ArrayList(); } - return s + "return"; + return expression.getUsedVariable(); } }