BinaryOperation constructor

BinaryOperation(
  1. ASTNode left,
  2. String operator,
  3. ASTNode right
)

Implementation

BinaryOperation(this.left, this.operator, this.right);