1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1704
this.
Right
= right;
8 references to Right
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\AbstractFlowPass.cs (1)
1139
VisitRvalue(node.
Right
);
Generated\BoundNodes.xml.Generated.cs (5)
1720
if (left != this.Left || right != this.
Right
|| operatorKind != this.OperatorKind || operators != this.Operators || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9915
this.Visit(node.
Right
);
11026
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
12748
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
15305
new TreeDumperNode("right", null, new TreeDumperNode[] { Visit(node.
Right
, null) }),
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (1)
35
BoundExpression newRight = ReplaceTerminalElementsWithTemps(node.
Right
, node.Operators, initEffects, temps);
Operations\CSharpOperationFactory.cs (1)
1564
IOperation right = Create(boundTupleBinaryOperator.
Right
);