1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1867this.Right = right;
15 references to Right
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (1)
922var right = node.Right;
BoundTree\Expression.cs (1)
44protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Left, this.Right);
Compilation\MemberSemanticModel.cs (2)
1005var boundConversion = boundDeconstruction.Right; 1030return new DeconstructionInfo(boundDeconstruction.DeconstructionAssignment.Right.Conversion);
FlowAnalysis\AbstractFlowPass.cs (1)
2079VisitRvalue(node.Right);
FlowAnalysis\DefiniteAssignment.cs (1)
2454Assign(node.Left, node.Right);
FlowAnalysis\NullableWalker.cs (1)
9952var right = node.Right;
Generated\BoundNodes.xml.Generated.cs (5)
1881if (left != this.Left || right != this.Right || isUsed != this.IsUsed || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9937this.Visit(node.Right); 11057BoundConversion right = (BoundConversion)this.Visit(node.Right); 12805BoundConversion right = (BoundConversion)this.Visit(node.Right); 15356new TreeDumperNode("right", null, new TreeDumperNode[] { Visit(node.Right, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
243CheckForDeconstructionAssignmentToSelf((BoundTupleExpression)node.Left, node.Right);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
19var right = node.Right;
Operations\CSharpOperationFactory.cs (1)
433IOperation value = Create(boundDeconstructionAssignmentOperator.Right.Operand);