1 write to Left
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1774this.Left = left;
26 references to Left
Microsoft.CodeAnalysis.CSharp (26)
Binder\Binder.ValueChecks.cs (3)
3728return Math.Max(GetValEscape(compound.Left, scopeOfTheContainingExpression), 4205return CheckValEscape(compound.Left.Syntax, compound.Left, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics) &&
FlowAnalysis\AbstractFlowPass.cs (5)
2017if (RegularPropertyAccess(node.Left)) 2019var left = (BoundPropertyAccess)node.Left; 2031VisitRvalue(node.Left, isKnownToBeAnLvalue: true); 2036if (RegularPropertyAccess(node.Left)) 2038var left = (BoundPropertyAccess)node.Left;
FlowAnalysis\DefiniteAssignment.cs (1)
2351Assign(node.Left, value: node);
FlowAnalysis\NullableWalker.cs (6)
9630var left = node.Left; 9639TypeWithState leftOnRightType = GetAdjustedResult(leftResultType, MakeSlot(node.Left)); 9647node.Left, 9670VisitArguments(node, ImmutableArray.Create(node.Left, right), method.ParameterRefKinds, method.Parameters, argsToParamsOpt: default, defaultArguments: default, 9676FlowAnalysisAnnotations leftAnnotations = GetLValueAnnotations(node.Left); 9699TrackNullableStateForAssignment(node, leftLValueType, MakeSlot(node.Left), resultType);
Generated\BoundNodes.xml.Generated.cs (5)
1800if (@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)) 9576this.Visit(node.Left); 10661BoundExpression left = (BoundExpression)this.Visit(node.Left); 12332BoundExpression left = (BoundExpression)this.Visit(node.Left); 14795new TreeDumperNode("left", null, new TreeDumperNode[] { Visit(node.Left, null) }),
Lowering\DiagnosticsPass_Warnings.cs (1)
286BoundExpression left = node.Left;
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (4)
37BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.Left, isRegularCompoundAssignment: true, stores, temps, isDynamic); 41if (node.Left.Kind == BoundKind.DynamicMemberAccess && 144Debug.Assert(node.Left.Type is { }); 156return MakeAssignmentOperator(syntax, transformedLHS, opFinal, node.Left.Type, used: used, isChecked: isChecked, isCompoundAssignment: true);
Operations\CSharpOperationFactory.cs (1)
1290IOperation target = Create(boundCompoundAssignmentOperator.Left);