1 write to LeftPlaceholder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1778this.LeftPlaceholder = leftPlaceholder;
11 references to LeftPlaceholder
Microsoft.CodeAnalysis.CSharp (11)
BoundTree\NullabilityRewriter.cs (1)
142BoundValuePlaceholder? leftPlaceholder = node.LeftPlaceholder;
FlowAnalysis\NullableWalker.cs (1)
11211BoundNode.GetConversion(node.LeftConversion, node.LeftPlaceholder),
Generated\BoundNodes.xml.Generated.cs (3)
1802if (@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)) 11096BoundValuePlaceholder? leftPlaceholder = node.LeftPlaceholder; 15488new TreeDumperNode("leftPlaceholder", null, new TreeDumperNode[] { Visit(node.LeftPlaceholder, null) }),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (5)
47ApplyConversionIfNotIdentity(node.LeftConversion, node.LeftPlaceholder, VisitExpression(node.Left)), 68ApplyConversionIfNotIdentity(node.LeftConversion, node.LeftPlaceholder, targetOfCompoundOperation), 196Debug.Assert(node.LeftPlaceholder is not null); 198AddPlaceholderReplacement(node.LeftPlaceholder, leftRead); 200RemovePlaceholderReplacement(node.LeftPlaceholder);
Operations\CSharpOperationFactory.cs (1)
1360Conversion inConversion = BoundNode.GetConversion(boundCompoundAssignmentOperator.LeftConversion, boundCompoundAssignmentOperator.LeftPlaceholder);