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