equal method

LogicalResultNodeWrapper equal(
  1. ArithmeticResultNodeWrapper other
)

Implementation

LogicalResultNodeWrapper equal(ArithmeticResultNodeWrapper other) {
  return LogicalResultNodeWrapper(
      equalNode: EqualNode(
          leftChild: this,
          rightChild: other
      )
  );
}