1 write to RightOperand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1932this.RightOperand = rightOperand;
12 references to RightOperand
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder.ValueChecks.cs (1)
4502return GetValEscape(((BoundNullCoalescingAssignmentOperator)expr).RightOperand, localScopeDepth);
BoundTree\BoundNullCoalescingAssignmentOperator.cs (1)
22return nullableUnderlying.Equals(RightOperand.Type);
FlowAnalysis\AbstractFlowPass.cs (1)
3801VisitRvalue(node.RightOperand);
FlowAnalysis\DefiniteAssignment.cs (1)
2798Assign(node.LeftOperand, node.RightOperand);
FlowAnalysis\NullableWalker.cs (1)
5821BoundExpression rightOperand = node.RightOperand;
Generated\BoundNodes.xml.Generated.cs (5)
1943if (leftOperand != this.LeftOperand || rightOperand != this.RightOperand || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9979this.Visit(node.RightOperand); 11129BoundExpression rightOperand = (BoundExpression)this.Visit(node.RightOperand); 12998BoundExpression rightOperand = (BoundExpression)this.Visit(node.RightOperand); 15535new TreeDumperNode("rightOperand", null, new TreeDumperNode[] { Visit(node.RightOperand, null) }),
Lowering\LocalRewriter\LocalRewriter_NullCoalescingAssignmentOperator.cs (1)
26BoundExpression loweredRight = VisitExpression(node.RightOperand);
Operations\CSharpOperationFactory.cs (1)
1607IOperation value = Create(boundNode.RightOperand);