1 write to Left
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1786
this.
Left
= left;
30 references to Left
Microsoft.CodeAnalysis.CSharp (30)
Binder\Binder.ValueChecks.cs (5)
4420
argsOpt: [compound.
Left
, compound.Right],
4427
return Math.Max(GetValEscape(compound.
Left
, scopeOfTheContainingExpression),
5202
argsOpt: [compound.
Left
, compound.Right],
5212
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)
10522
Visit(node.
Left
);
10540
node.LeftConversion as BoundConversion ?? node.
Left
,
10541
node.
Left
,
10549
var leftArgumentAnnotations = GetLValueAnnotations(node.
Left
);
10570
AdjustSetValue(node.
Left
, ref resultTypeWithState);
10572
TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.
Left
), resultTypeWithState);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
284
Visit(node.
Left
);
Generated\BoundNodes.xml.Generated.cs (5)
1812
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))
9926
this.Visit(node.
Left
);
11040
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
12766
BoundExpression left = (BoundExpression)this.Visit(node.
Left
);
15332
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
);