7 references to IsSynthesized
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
3713
!matchingNewSymbol.
IsSynthesized
() &&
7045
if (!newSymbol.
IsSynthesized
())
7061
return !newPrimaryConstructor.
IsSynthesized
() &&
7062
(oldConstructor == null || oldConstructor.
IsSynthesized
() || !IsPrimaryConstructor(oldConstructor, cancellationToken));
7089
return !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;