BinaryOperationExpression constructor

BinaryOperationExpression(
  1. BinaryOperator operator,
  2. Expression left,
  3. Expression right
)

Implementation

BinaryOperationExpression(this.operator, this.left, this.right)
    : allowsSlash = false;