BinaryExpr constructor

BinaryExpr(
  1. Expr left,
  2. String op,
  3. Expr right
)

Implementation

BinaryExpr(this.left, this.op, this.right);