1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1867
this.
Right
= right;
15 references to Right
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (1)
914
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)
1005
var boundConversion = boundDeconstruction.
Right
;
1030
return new DeconstructionInfo(boundDeconstruction.DeconstructionAssignment.
Right
.Conversion);
FlowAnalysis\AbstractFlowPass.cs (1)
2169
VisitRvalue(node.
Right
);
FlowAnalysis\DefiniteAssignment.cs (1)
2499
Assign(node.Left, node.
Right
);
FlowAnalysis\NullableWalker.cs (1)
10109
var right = node.
Right
;
Generated\BoundNodes.xml.Generated.cs (5)
1881
if (left != this.Left || right != this.
Right
|| isUsed != this.IsUsed || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9939
this.Visit(node.
Right
);
11059
BoundConversion right = (BoundConversion)this.Visit(node.
Right
);
12807
BoundConversion right = (BoundConversion)this.Visit(node.
Right
);
15358
new TreeDumperNode("right", null, new TreeDumperNode[] { Visit(node.
Right
, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
243
CheckForDeconstructionAssignmentToSelf((BoundTupleExpression)node.Left, node.
Right
);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
19
var right = node.
Right
;
Operations\CSharpOperationFactory.cs (1)
433
IOperation value = Create(boundDeconstructionAssignmentOperator.
Right
.Operand);