assignNullAware method
Expression
assignNullAware(
- Expression other
inherited
Return {this} ??= {other}
.
Implementation
Expression assignNullAware(Expression other) => BinaryExpression._(
this,
other,
'??=',
);