bitwiseOrAssign method

Expression bitwiseOrAssign(
  1. Expression other
)

Return this |= other.

Implementation

Expression bitwiseOrAssign(Expression other) =>
    BinaryExpression._(this, other, '|=');