Plus method

Expr Plus(
  1. Expr exp
)

Implementation

Expr Plus(Expr exp) {
  return new BinaryExpression(this, "+", exp)..fieldType = this.fieldType;
}