or method

Expr or(
  1. Expr rhs
)

Implementation

Expr or(Expr rhs) {
  return ExprOr(left: this, right: rhs);
}