Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / BinaryExpression.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4
5 /**
6  * @author Matthieu Casanova
7  */
8 public class BinaryExpression extends OperatorExpression {
9
10   /** The two expressions. */
11   public Expression left,right;
12
13   public BinaryExpression(final Expression left,
14                           final Expression right,
15                           final int operator) {
16     super(operator, left.sourceStart, right.sourceEnd);
17     this.left = left;
18     this.right = right;
19   }
20
21   public String toStringExpression() {
22     final StringBuffer buff = new StringBuffer(left.toStringExpression());
23     buff.append(operatorToString());
24     buff.append(right.toStringExpression());
25     return buff.toString();
26   }
27
28   /**
29    * Get the variables from outside (parameters, globals ...)
30    */
31   public void getOutsideVariable(final List list) {
32   }
33
34   /**
35    * get the modified variables.
36    */
37   public void getModifiedVariable(final List list) {
38     left.getModifiedVariable(list);
39     right.getModifiedVariable(list);
40   }
41
42   /**
43    * Get the variables used.
44    */
45   public void getUsedVariable(final List list) {
46     left.getUsedVariable(list);
47     right.getUsedVariable(list);
48   }
49
50 }