6 references to BadPropertyAccessor
Microsoft.CodeAnalysis.Features (2)
src\Analyzers\Core\CodeFixes\ImplementInterface\ImplementInterfaceGenerator.cs (2)
427if (propertyToAdd.GetMethod != null && SignatureComparer.BadPropertyAccessor(propertyToAdd.GetMethod, existingProperty.GetMethod)) 430if (propertyToAdd.SetMethod != null && SignatureComparer.BadPropertyAccessor(propertyToAdd.SetMethod, existingProperty.SetMethod))
Microsoft.CodeAnalysis.Workspaces (4)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Symbols\SignatureComparer.cs (4)
188if (BadPropertyAccessor(property1.GetMethod, property2.GetMethod) || 189BadPropertyAccessor(property1.SetMethod, property2.SetMethod)) 198if (BadPropertyAccessor(property2.GetMethod, property1.GetMethod) || 199BadPropertyAccessor(property2.SetMethod, property1.SetMethod))