1 write to Left
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1866
this.
Left
= left;
15 references to Left
Microsoft.CodeAnalysis.CSharp (15)
Binder\RefSafetyAnalysis.cs (1)
913
var left = node.
Left
;
BoundTree\Expression.cs (1)
44
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.
Left
, this.Right);
FlowAnalysis\AbstractFlowPass.cs (1)
2168
VisitLvalue(node.
Left
);
FlowAnalysis\DefiniteAssignment.cs (1)
2499
Assign(node.
Left
, node.Right);
FlowAnalysis\NullableWalker.cs (1)
10108
var left = node.
Left
;
FlowAnalysis\VariablesDeclaredWalker.cs (1)
139
((BoundTupleExpression)deconstructionAssignment.
Left
).VisitAllElements((x, self) => self.Visit(x), this);
Generated\BoundNodes.xml.Generated.cs (5)
1881
if (left != this.
Left
|| right != this.Right || isUsed != this.IsUsed || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9938
this.Visit(node.
Left
);
11058
BoundTupleExpression left = (BoundTupleExpression)this.Visit(node.
Left
);
12806
BoundTupleExpression left = (BoundTupleExpression)this.Visit(node.
Left
);
15357
new TreeDumperNode("left", null, new TreeDumperNode[] { Visit(node.
Left
, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
243
CheckForDeconstructionAssignmentToSelf((BoundTupleExpression)node.
Left
, node.Right);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
22
return RewriteDeconstruction(node.
Left
, right.Conversion, right.Operand, node.IsUsed);
Operations\CSharpOperationFactory.cs (2)
430
IOperation target = Create(boundDeconstructionAssignmentOperator.
Left
);
1957
return Create(boundForEachStatement.DeconstructionOpt.DeconstructionAssignment.
Left
);