BinaryExpression<I, O1, O> constructor

const BinaryExpression<I, O1, O>(
  1. ParserBuilder<I, O> left,
  2. ParserBuilder<I, O1> operator,
  3. ParserBuilder<I, O> right,
  4. SemanticAction<O> calculate,
)

Implementation

const BinaryExpression(this.left, this.operator, this.right, this.calculate);