Represents an abstract operator expression over exactly two operand expressions . For example, x << 1 is a binary operator expression. @author David J. Pearce
| 2613 | * |
| 2614 | */ |
| 2615 | public interface BinaryOperator extends Expr { |
| 2616 | public Expr getFirstOperand(); |
| 2617 | |
| 2618 | public Expr getSecondOperand(); |
| 2619 | } |
| 2620 | |
| 2621 | /** |
| 2622 | * Represents an abstract operator expression over exactly three <i>operand |
no outgoing calls
no test coverage detected