addAssign method

Expression addAssign(
  1. Expression other
)

Return this += other.

Implementation

Expression addAssign(Expression other) =>
    BinaryExpression._(this, other, '+=');