7 references to IsSynthesized
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
3721
!matchingNewSymbol.
IsSynthesized
() &&
7096
if (!newSymbol.
IsSynthesized
())
7112
return !newPrimaryConstructor.
IsSynthesized
() &&
7113
(oldConstructor == null || oldConstructor.
IsSynthesized
() || !IsPrimaryConstructor(oldConstructor, cancellationToken));
7140
return !newPrimaryParameter.
IsSynthesized
() &&
7141
(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;