subtractAssign method

Expression subtractAssign(
  1. Expression other
)

Return this -= other.

Implementation

Expression subtractAssign(Expression other) =>
    BinaryExpression._(this, other, '-=');