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