org.codehaus.janino
public static final class Java.BinaryOperation extends Java.BooleanRvalue
Operations with boolean result:
|| && == != < > <= >=
Operations with non-boolean result:
| ^ & * / % + - << >> >>>
Field Summary | |
---|---|
Java.Rvalue | lhs |
String | op |
Java.Rvalue | rhs |
Constructor Summary | |
---|---|
BinaryOperation(Location location, Java.Rvalue lhs, String op, Java.Rvalue rhs) |
Method Summary | |
---|---|
void | accept(Visitor.AtomVisitor visitor) |
void | accept(Visitor.RvalueVisitor visitor) |
String | toString() |
Iterator | unrollLeftAssociation()
Returns an Iterator over a left-to-right sequence of Rvalues. |