1 write to FinalPlaceholder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1790this.FinalPlaceholder = finalPlaceholder;
9 references to FinalPlaceholder
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\NullableWalker.cs (1)
10399BoundNode.GetConversion(node.FinalConversion, node.FinalPlaceholder),
Generated\BoundNodes.xml.Generated.cs (4)
1812if (@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)) 11042BoundValuePlaceholder? finalPlaceholder = node.FinalPlaceholder; 12768BoundValuePlaceholder? finalPlaceholder = node.FinalPlaceholder; 15334new TreeDumperNode("finalPlaceholder", null, new TreeDumperNode[] { Visit(node.FinalPlaceholder, null) }),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (3)
149Debug.Assert(node.FinalPlaceholder is not null); 151AddPlaceholderReplacement(node.FinalPlaceholder, operand); 153RemovePlaceholderReplacement(node.FinalPlaceholder);
Operations\CSharpOperationFactory.cs (1)
1361Conversion outConversion = BoundNode.GetConversion(boundCompoundAssignmentOperator.FinalConversion, boundCompoundAssignmentOperator.FinalPlaceholder);