5 references to IsPartialImplementation
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
3309var partialType = editKind == SemanticEditKind.Update && symbol.IsPartialImplementation() 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;