1 instantiation of SynthesizedUnionValuePropertySymbol
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
4827var valueProperty = new SynthesizedUnionValuePropertySymbol(this, valuePropertySyntax, diagnostics);
6 references to SynthesizedUnionValuePropertySymbol
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Source\SourceMemberContainerSymbol.cs (2)
1971if (!field.IsStatic && field.AssociatedSymbol is not SynthesizedUnionValuePropertySymbol) 4827var valueProperty = new SynthesizedUnionValuePropertySymbol(this, valuePropertySyntax, diagnostics);
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
132SynthesizedUnionValuePropertySymbol property, 282if (_property is SynthesizedUnionValuePropertySymbol or SynthesizedRecordEqualityContractProperty or SynthesizedRecordPropertySymbol)
Symbols\Synthesized\SynthesizedUnionCtor.cs (2)
44var valueProperty = ContainingType.GetMembers(WellKnownMemberNames.ValuePropertyName).OfType<SynthesizedUnionValuePropertySymbol>().Single();