6 references to IsSynthesized
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (5)
3551
!matchingNewSymbol.
IsSynthesized
() &&
6855
if (!newSymbol.
IsSynthesized
())
6871
return !newPrimaryConstructor.
IsSynthesized
() &&
6872
(oldConstructor == null || oldConstructor.
IsSynthesized
() || !IsPrimaryConstructor(oldConstructor, cancellationToken));
6900
(oldParameter == null || oldParameter.
IsSynthesized
() || !IsPrimaryConstructor(oldParameter.ContainingSymbol, cancellationToken) || oldProperty.IsSynthesizedAutoProperty());
EditAndContinue\Utilities\Extensions.cs (1)
178
=> parameter.IsImplicitlyDeclared || parameter.ContainingSymbol.
IsSynthesized
() && parameter.ContainingSymbol != parameter.ContainingType.DelegateInvokeMethod;