9c0689a9221fd877214a4cbaa0c5728da6ce716a
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / DoStatement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 /**
7  * A do statement.
8  * @author Matthieu Casanova
9  */
10 public class DoStatement extends Statement {
11
12
13   /** The condition expression. */
14   public Expression condition;
15   /** The action of the while. (it could be a block) */
16   public Statement action;
17
18   public DoStatement(final Expression condition,
19                      final Statement action,
20                      final int sourceStart,
21                      final int sourceEnd) {
22     super(sourceStart, sourceEnd);
23     this.condition = condition;
24     this.action = action;
25   }
26
27   /**
28    * Return the object into String.
29    * @param tab how many tabs (not used here
30    * @return a String
31    */
32   public String toString(final int tab) {
33     final String s = tabString(tab);
34     final StringBuffer buff = new StringBuffer("do ");//$NON-NLS-1$
35     if (action == null) {
36       buff.append(" {} ;"); //$NON-NLS-1$
37     } else {
38       buff.append("\n").append(action.toString(tab + 1));//$NON-NLS-1$
39     }
40     buff.append(s).append(" while (");//$NON-NLS-1$
41     buff.append(condition.toStringExpression()).append(")");//$NON-NLS-1$
42     return buff.toString();
43   }
44
45   /**
46    * Get the variables from outside (parameters, globals ...)
47    */
48   public void getOutsideVariable(final List list) {
49     condition.getOutsideVariable(list); // todo: check if unuseful
50     action.getOutsideVariable(list);
51   }
52
53   /**
54    * get the modified variables.
55    */
56   public void getModifiedVariable(final List list) {
57     condition.getModifiedVariable(list);
58     action.getModifiedVariable(list);
59   }
60
61   /**
62    * Get the variables used.
63    */
64   public void getUsedVariable(final List list) {
65     condition.getUsedVariable(list);
66     action.getUsedVariable(list);
67   }
68 }