pub trait BinaryOp: HasResult {
// Required methods
fn get_operand0(&self) -> &Operand;
fn get_operand1(&self) -> &Operand;
}
pub trait BinaryOp: HasResult {
// Required methods
fn get_operand0(&self) -> &Operand;
fn get_operand1(&self) -> &Operand;
}