add method

Expr add(
  1. Expr rhs
)

Implementation

Expr add(Expr rhs) {
  return ExprAdd(left: this, right: rhs);
}