4 references to IsPartialImplementation
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
3473return symbol.IsPartialImplementation() && result?.IsPartialDefinition() == true ? null : result;
EditAndContinue\SemanticEditInfo.cs (3)
64var partialType = symbol.IsPartialImplementation() ? SymbolKey.Create(symbol.ContainingType, cancellationToken) : (SymbolKey?)null; 74var partialType = symbol.IsPartialImplementation() ? SymbolKey.Create(symbol.ContainingType, cancellationToken) : (SymbolKey?)null; 87var partialType = symbol.IsPartialImplementation() ? containingSymbolKey : (SymbolKey?)null;