1 write to RightOperand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1942
this.
RightOperand
= rightOperand;
12 references to RightOperand
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder.ValueChecks.cs (1)
4405
return GetValEscape(((BoundNullCoalescingAssignmentOperator)expr).
RightOperand
, scopeOfTheContainingExpression);
BoundTree\BoundNullCoalescingAssignmentOperator.cs (1)
22
return nullableUnderlying.Equals(
RightOperand
.Type);
FlowAnalysis\AbstractFlowPass.cs (1)
3765
VisitRvalue(node.
RightOperand
);
FlowAnalysis\DefiniteAssignment.cs (1)
2785
Assign(node.LeftOperand, node.
RightOperand
);
FlowAnalysis\NullableWalker.cs (1)
5547
BoundExpression rightOperand = node.
RightOperand
;
Generated\BoundNodes.xml.Generated.cs (5)
1953
if (leftOperand != this.LeftOperand || rightOperand != this.
RightOperand
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9951
this.Visit(node.
RightOperand
);
11075
BoundExpression rightOperand = (BoundExpression)this.Visit(node.
RightOperand
);
12845
BoundExpression rightOperand = (BoundExpression)this.Visit(node.
RightOperand
);
15381
new TreeDumperNode("rightOperand", null, new TreeDumperNode[] { Visit(node.
RightOperand
, null) }),
Lowering\LocalRewriter\LocalRewriter_NullCoalescingAssignmentOperator.cs (1)
26
BoundExpression loweredRight = VisitExpression(node.
RightOperand
);
Operations\CSharpOperationFactory.cs (1)
1607
IOperation value = Create(boundNode.
RightOperand
);