61585caa8be44d36e36e21c4e93dd49a49bfacd4
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ReturnStatement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 /**
7  * A return statement.
8  * @author Matthieu Casanova
9  */
10 public class ReturnStatement extends Statement {
11
12   public Expression expression;
13
14   public ReturnStatement(final Expression expression, final int sourceStart, final int sourceEnd) {
15     super(sourceStart, sourceEnd);
16     this.expression = expression;
17   }
18
19   public String toString(final int tab) {
20     final String s = tabString(tab);
21     if (expression == null) {
22       return s + "return";//$NON-NLS-1$
23     }
24     return s + "return " + expression.toStringExpression();//$NON-NLS-1$
25   }
26
27     /**
28    * Get the variables from outside (parameters, globals ...)
29    */
30   public void getOutsideVariable(final List list) {
31   }
32
33   /**
34    * get the modified variables.
35    */
36   public void getModifiedVariable(final List list) {
37     if (expression != null) {
38       expression.getModifiedVariable(list);
39     }
40   }
41
42   /**
43    * Get the variables used.
44    */
45   public void getUsedVariable(final List list) {
46     if (expression != null) {
47         expression.getUsedVariable(list);
48     }
49   }
50 }