shiftLeftAssign method

Expression shiftLeftAssign(
  1. Expression other
)

Return this <<= other.

Implementation

Expression shiftLeftAssign(Expression other) =>
    BinaryExpression._(this, other, '<<=');