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)
4499
argsOpt: [compound.
Left
, compound.Right],
4506
return GetValEscape(compound.
Left
, localScopeDepth)
5287
argsOpt: [compound.
Left
, compound.Right],
5297
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)
2197
if (RegularPropertyAccess(node.
Left
))
2199
var left = (BoundPropertyAccess)node.
Left
;
2211
VisitRvalue(node.
Left
, isKnownToBeAnLvalue: true);
2216
if (RegularPropertyAccess(node.
Left
))
2218
var left = (BoundPropertyAccess)node.
Left
;
FlowAnalysis\DefiniteAssignment.cs (1)
2542
Assign(node.
Left
, value: node);
FlowAnalysis\NullableWalker.cs (6)
10700
Visit(node.
Left
);
10718
node.LeftConversion as BoundConversion ?? node.
Left
,
10719
node.
Left
,
10727
var leftArgumentAnnotations = GetLValueAnnotations(node.
Left
);
10748
AdjustSetValue(node.
Left
, ref resultTypeWithState);
10750
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))
9961
this.Visit(node.
Left
);
11099
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
12947
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
15512
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)
36
BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.
Left
, isRegularCompoundAssignment: true, stores, temps, isDynamic);
40
if (node.
Left
.Kind == BoundKind.DynamicMemberAccess &&
157
Debug.Assert(node.
Left
.Type is { });
169
Debug.Assert(TypeSymbol.Equals(transformedLHS.Type, node.
Left
.Type, TypeCompareKind.AllIgnoreOptions));
Operations\CSharpOperationFactory.cs (1)
1357
IOperation target = Create(boundCompoundAssignmentOperator.
Left
);