5 references to IsSynthesizedAutoProperty
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
176=> member is IMethodSymbol { AssociatedSymbol: IPropertySymbol property } && property.IsSynthesizedAutoProperty();
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
3208Debug.Assert(synthesizedProperty.IsSynthesizedAutoProperty()); 3213if (customProperty.IsSynthesizedAutoProperty()) 7019(oldParameter == null || oldParameter.IsSynthesized() || !IsPrimaryConstructor(oldParameter.ContainingSymbol, cancellationToken) || oldProperty.IsSynthesizedAutoProperty());
EditAndContinue\Utilities\Extensions.cs (1)
149=> symbol is IPropertySymbol property && property.IsSynthesizedAutoProperty();