1 write to RightOperand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1942this.RightOperand = rightOperand;
12 references to RightOperand
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder.ValueChecks.cs (1)
4405return GetValEscape(((BoundNullCoalescingAssignmentOperator)expr).RightOperand, scopeOfTheContainingExpression);
BoundTree\BoundNullCoalescingAssignmentOperator.cs (1)
22return nullableUnderlying.Equals(RightOperand.Type);
FlowAnalysis\AbstractFlowPass.cs (1)
3765VisitRvalue(node.RightOperand);
FlowAnalysis\DefiniteAssignment.cs (1)
2785Assign(node.LeftOperand, node.RightOperand);
FlowAnalysis\NullableWalker.cs (1)
5547BoundExpression rightOperand = node.RightOperand;
Generated\BoundNodes.xml.Generated.cs (5)
1953if (leftOperand != this.LeftOperand || rightOperand != this.RightOperand || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9951this.Visit(node.RightOperand); 11075BoundExpression rightOperand = (BoundExpression)this.Visit(node.RightOperand); 12845BoundExpression rightOperand = (BoundExpression)this.Visit(node.RightOperand); 15381new 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);