3 implementations of IGoToDefinitionService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptGoToDefinitionServiceFactory.cs (1)
36private sealed class ServiceWrapper : IGoToDefinitionService
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
CodeDefinitionWindow\CrossLanguageCodeDefinitionWindowTests.vb (1)
82Implements IGoToDefinitionService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpGoToDefinitionService.cs (1)
23internal class FSharpGoToDefinitionService : IGoToDefinitionService
12 references to IGoToDefinitionService
Microsoft.CodeAnalysis.EditorFeatures (6)
ExternalAccess\VSTypeScript\VSTypeScriptGoToDefinitionServiceFactory.cs (1)
20[ExportLanguageServiceFactory(typeof(IGoToDefinitionService), InternalLanguageNames.TypeScript), Shared]
GoToDefinition\GoToDefinitionCommandHandler.cs (3)
55private static (Document?, IGoToDefinitionService?, IAsyncGoToDefinitionService?) GetDocumentAndService(ITextSnapshot snapshot) 58return (document, document?.GetLanguageService<IGoToDefinitionService>(), document?.GetLanguageService<IAsyncGoToDefinitionService>()); 128IGoToDefinitionService? service,
GoToDefinition\GoToDefinitionHelpers.cs (2)
151var goToDefinitionsService = document.GetRequiredLanguageService<IGoToDefinitionService>();
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
Peek\PeekableItemSource.cs (2)
82var goToDefinitionService = document.GetLanguageService<IGoToDefinitionService>();
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (3)
CodeDefinitionWindow\CrossLanguageCodeDefinitionWindowTests.vb (3)
80<ExportLanguageService(GetType(IGoToDefinitionService), NoCompilationConstants.LanguageName), [Shared]> 89Public Function FindDefinitionsAsync(document As Document, position As Integer, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of INavigableItem)) Implements IGoToDefinitionService.FindDefinitionsAsync 93Public Function TryGoToDefinition(document As Document, position As Integer, cancellationToken As CancellationToken) As Boolean Implements IGoToDefinitionService.TryGoToDefinition
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\FSharpGoToDefinitionService.cs (1)
22[ExportLanguageService(typeof(IGoToDefinitionService), LanguageNames.FSharp)]