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