bitwiseAndAssign method
Expression
bitwiseAndAssign(
- Expression other
inherited
Return this
&= other
.
Implementation
Expression bitwiseAndAssign(Expression other) =>
BinaryExpression._(this, other, '&=');