multiply method

Expr multiply(
  1. Expr rhs
)

Implementation

Expr multiply(Expr rhs) {
  return ExprMult(left: this, right: rhs);
}