5 references to SymbolFinderInternal
Microsoft.CodeAnalysis.Features (4)
src\Analyzers\Core\CodeFixes\GenerateConstructor\AbstractGenerateConstructorService.State.cs (1)
397
var definition = await
SymbolFinderInternal
.FindSourceDefinitionAsync(original, _document.Project.Solution, cancellationToken).ConfigureAwait(false);
src\Analyzers\Core\CodeFixes\GenerateEnumMember\AbstractGenerateEnumMemberService.State.cs (1)
67
var sourceType = (await
SymbolFinderInternal
.FindSourceDefinitionAsync(TypeToGenerateIn, document.Project.Solution, cancellationToken).ConfigureAwait(false)) as INamedTypeSymbol;
src\Analyzers\Core\CodeFixes\GenerateParameterizedMember\AbstractGenerateParameterizedMemberService.State.cs (1)
61
TypeToGenerateIn = await
SymbolFinderInternal
.FindSourceDefinitionAsync(TypeToGenerateIn, document.Project.Solution, cancellationToken).ConfigureAwait(false) as INamedTypeSymbol;
src\Analyzers\Core\CodeFixes\UnsealClass\AbstractUnsealClassCodeFixProvider.cs (1)
42
var definition = await
SymbolFinderInternal
.FindSourceDefinitionAsync(
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SymbolFinder.cs (1)
140
=>
SymbolFinderInternal
.FindSourceDefinitionAsync(symbol, solution, cancellationToken).AsTask();