pub type BinExpr = BinInst<Expr>;
struct BinExpr { pub operands: (Expr, Expr), pub op: BinOp, }
operands: (Expr, Expr)
The operands of the binary operation
op: BinOp
The kind of the binary operation