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