visitBinaryOperationExpression method

Expression visitBinaryOperationExpression(
  1. BinaryOperationExpression node
)
override

Implementation

Expression visitBinaryOperationExpression(BinaryOperationExpression node) =>
    BinaryOperationExpression(
        node.operator, node.left.accept(this), node.right.accept(this));