1 instantiation of ImplementationDetails
Microsoft.CodeAnalysis.Features.ExternalAccess (1)
Copilot\Internal\Analyzer\CSharp\CSharpCopilotCodeAnalysisService.cs (1)
172new ImplementationDetails
6 references to ImplementationDetails
Microsoft.CodeAnalysis.CSharp.Features (1)
Copilot\CSharpImplementNotImplementedExceptionFixProvider.cs (1)
115Contract.ThrowIfFalse(memberImplementationDetails.TryGetValue(methodOrProperty, out var implementationDetails));
Microsoft.CodeAnalysis.Features (1)
Copilot\ICopilotCodeAnalysisService.cs (1)
100Task<ImmutableDictionary<SyntaxNode, ImplementationDetails>> ImplementNotImplementedExceptionsAsync(
Microsoft.CodeAnalysis.Features.ExternalAccess (4)
Copilot\Internal\Analyzer\AbstractCopilotCodeAnalysisService.cs (2)
49protected abstract Task<ImmutableDictionary<SyntaxNode, ImplementationDetails>> ImplementNotImplementedExceptionsCoreAsync(Document document, ImmutableDictionary<SyntaxNode, ImmutableArray<ReferencedSymbol>> methodOrProperties, CancellationToken cancellationToken); 217public async Task<ImmutableDictionary<SyntaxNode, ImplementationDetails>> ImplementNotImplementedExceptionsAsync(
Copilot\Internal\Analyzer\CSharp\CSharpCopilotCodeAnalysisService.cs (2)
159protected override async Task<ImmutableDictionary<SyntaxNode, ImplementationDetails>> ImplementNotImplementedExceptionsCoreAsync( 167var resultBuilder = ImmutableDictionary.CreateBuilder<SyntaxNode, ImplementationDetails>();