1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1704this.Right = right;
8 references to Right
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\AbstractFlowPass.cs (1)
1139VisitRvalue(node.Right);
Generated\BoundNodes.xml.Generated.cs (5)
1720if (left != this.Left || right != this.Right || operatorKind != this.OperatorKind || operators != this.Operators || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9915this.Visit(node.Right); 11026BoundExpression right = (BoundExpression)this.Visit(node.Right); 12748BoundExpression right = (BoundExpression)this.Visit(node.Right); 15305new 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);