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