7 references to IsSynthesized
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
3713!matchingNewSymbol.IsSynthesized() && 7045if (!newSymbol.IsSynthesized()) 7061return !newPrimaryConstructor.IsSynthesized() && 7062(oldConstructor == null || oldConstructor.IsSynthesized() || !IsPrimaryConstructor(oldConstructor, cancellationToken)); 7089return !newPrimaryParameter.IsSynthesized() && 7090(oldParameter == null || oldParameter.IsSynthesized() || !IsPrimaryConstructor(oldParameter.ContainingSymbol, cancellationToken) || oldProperty.IsSynthesizedAutoProperty());
EditAndContinue\Utilities\Extensions.cs (1)
168=> parameter.IsImplicitlyDeclared || parameter.ContainingSymbol.IsSynthesized() && parameter.ContainingSymbol != parameter.ContainingType.DelegateInvokeMethod;