1 write to Left
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1787
this.
Left
= left;
30 references to Left
Microsoft.CodeAnalysis.CSharp (30)
Binder\Binder.ValueChecks.cs (5)
4396
argsOpt: [compound.
Left
, compound.Right],
4403
return GetValEscape(compound.
Left
, scopeOfTheContainingExpression)
5178
argsOpt: [compound.
Left
, compound.Right],
5188
return CheckValEscape(compound.
Left
.Syntax, compound.
Left
, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics) &&
Binder\RefSafetyAnalysis.cs (1)
551
ValidateAssignment(node.Syntax, node.
Left
, node, isRef: false, _diagnostics);
FlowAnalysis\AbstractFlowPass.cs (5)
2190
if (RegularPropertyAccess(node.
Left
))
2192
var left = (BoundPropertyAccess)node.
Left
;
2204
VisitRvalue(node.
Left
, isKnownToBeAnLvalue: true);
2209
if (RegularPropertyAccess(node.
Left
))
2211
var left = (BoundPropertyAccess)node.
Left
;
FlowAnalysis\DefiniteAssignment.cs (1)
2515
Assign(node.
Left
, value: node);
FlowAnalysis\NullableWalker.cs (6)
10519
Visit(node.
Left
);
10537
node.LeftConversion as BoundConversion ?? node.
Left
,
10538
node.
Left
,
10546
var leftArgumentAnnotations = GetLValueAnnotations(node.
Left
);
10567
AdjustSetValue(node.
Left
, ref resultTypeWithState);
10569
TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.
Left
), resultTypeWithState);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
284
Visit(node.
Left
);
Generated\BoundNodes.xml.Generated.cs (5)
1813
if (@operator != this.Operator || left != this.
Left
|| right != this.Right || leftPlaceholder != this.LeftPlaceholder || leftConversion != this.LeftConversion || finalPlaceholder != this.FinalPlaceholder || finalConversion != this.FinalConversion || resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9927
this.Visit(node.
Left
);
11041
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
12767
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
15333
new TreeDumperNode("left", null, new TreeDumperNode[] { Visit(node.
Left
, null) }),
Lowering\DiagnosticsPass_Warnings.cs (1)
286
BoundExpression left = node.
Left
;
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (4)
37
BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.
Left
, isRegularCompoundAssignment: true, stores, temps, isDynamic);
41
if (node.
Left
.Kind == BoundKind.DynamicMemberAccess &&
144
Debug.Assert(node.
Left
.Type is { });
156
Debug.Assert(TypeSymbol.Equals(transformedLHS.Type, node.
Left
.Type, TypeCompareKind.AllIgnoreOptions));
Operations\CSharpOperationFactory.cs (1)
1357
IOperation target = Create(boundCompoundAssignmentOperator.
Left
);