1 write to RightOperand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1930
this.
RightOperand
= rightOperand;
12 references to RightOperand
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\BoundNullCoalescingAssignmentOperator.cs (1)
22
return nullableUnderlying.Equals(
RightOperand
.Type);
FlowAnalysis\AbstractFlowPass.cs (1)
3573
VisitRvalue(node.
RightOperand
);
FlowAnalysis\DefiniteAssignment.cs (1)
2629
Assign(node.LeftOperand, node.
RightOperand
);
FlowAnalysis\NullableWalker.cs (1)
5101
BoundExpression rightOperand = node.
RightOperand
;
Generated\BoundNodes.xml.Generated.cs (5)
1941
if (leftOperand != this.LeftOperand || rightOperand != this.
RightOperand
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9601
this.Visit(node.
RightOperand
);
10696
BoundExpression rightOperand = (BoundExpression)this.Visit(node.
RightOperand
);
12411
BoundExpression rightOperand = (BoundExpression)this.Visit(node.
RightOperand
);
14844
new TreeDumperNode("rightOperand", null, new TreeDumperNode[] { Visit(node.
RightOperand
, null) }),
Lowering\LocalRewriter\LocalRewriter_NullCoalescingAssignmentOperator.cs (2)
26
BoundExpression loweredRight = VisitExpression(node.
RightOperand
);
63
Debug.Assert(node.Type.Equals(node.
RightOperand
.Type));
Operations\CSharpOperationFactory.cs (1)
1540
IOperation value = Create(boundNode.
RightOperand
);