7 references to IsSynthesized
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (6)
3670
!matchingNewSymbol.
IsSynthesized
() &&
6974
if (!newSymbol.
IsSynthesized
())
6990
return !newPrimaryConstructor.
IsSynthesized
() &&
6991
(oldConstructor == null || oldConstructor.
IsSynthesized
() || !IsPrimaryConstructor(oldConstructor, cancellationToken));
7018
return !newPrimaryParameter.
IsSynthesized
() &&
7019
(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;