5 references to IsAutoProperty
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
326=> symbol.IsAutoProperty() ? FeaturesResources.auto_property : FeaturesResources.property_; 3244if (isDeleteEdit && !customProperty.IsAutoProperty()) 4358if (oldMethod is { MethodKind: MethodKind.PropertyGet or MethodKind.PropertySet, AssociatedSymbol: IPropertySymbol oldProperty } && !oldProperty.IsAutoProperty() && 4359newMethod is { MethodKind: MethodKind.PropertyGet or MethodKind.PropertySet, AssociatedSymbol: IPropertySymbol newProperty } && newProperty.IsAutoProperty() &&
EditAndContinue\Utilities\Extensions.cs (1)
171=> symbol is IPropertySymbol property && IsAutoProperty(property);