1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1855
this.
Right
= right;
15 references to Right
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (1)
727
var right = node.
Right
;
BoundTree\Expression.cs (1)
44
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Left, this.
Right
);
Compilation\MemberSemanticModel.cs (2)
996
var boundConversion = boundDeconstruction.
Right
;
1021
return new DeconstructionInfo(boundDeconstruction.DeconstructionAssignment.
Right
.Conversion);
FlowAnalysis\AbstractFlowPass.cs (1)
1996
VisitRvalue(node.
Right
);
FlowAnalysis\DefiniteAssignment.cs (1)
2335
Assign(node.Left, node.
Right
);
FlowAnalysis\NullableWalker.cs (1)
9222
var right = node.
Right
;
Generated\BoundNodes.xml.Generated.cs (5)
1869
if (left != this.Left || right != this.
Right
|| isUsed != this.IsUsed || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9589
this.Visit(node.
Right
);
10680
BoundConversion right = (BoundConversion)this.Visit(node.
Right
);
12373
BoundConversion right = (BoundConversion)this.Visit(node.
Right
);
14821
new TreeDumperNode("right", null, new TreeDumperNode[] { Visit(node.
Right
, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
232
CheckForDeconstructionAssignmentToSelf((BoundTupleExpression)node.Left, node.
Right
);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
19
var right = node.
Right
;
Operations\CSharpOperationFactory.cs (1)
430
IOperation value = Create(boundDeconstructionAssignmentOperator.
Right
.Operand);