1 write to FinalPlaceholder
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1791this.FinalPlaceholder = finalPlaceholder;
9 references to FinalPlaceholder
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\NullableWalker.cs (1)
10625BoundNode.GetConversion(node.FinalConversion, node.FinalPlaceholder),
Generated\BoundNodes.xml.Generated.cs (4)
1813if (@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)) 11079BoundValuePlaceholder? finalPlaceholder = node.FinalPlaceholder; 12805BoundValuePlaceholder? finalPlaceholder = node.FinalPlaceholder; 15370new TreeDumperNode("finalPlaceholder", null, new TreeDumperNode[] { Visit(node.FinalPlaceholder, null) }),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (3)
162Debug.Assert(node.FinalPlaceholder is not null); 164AddPlaceholderReplacement(node.FinalPlaceholder, operand); 166RemovePlaceholderReplacement(node.FinalPlaceholder);
Operations\CSharpOperationFactory.cs (1)
1361Conversion outConversion = BoundNode.GetConversion(boundCompoundAssignmentOperator.FinalConversion, boundCompoundAssignmentOperator.FinalPlaceholder);