1 implementation of IGoToBaseService
Microsoft.CodeAnalysis.Features (1)
GoToBase\AbstractGoToBaseService.cs (1)
15internal abstract class AbstractGoToBaseService : IGoToBaseService
5 references to IGoToBaseService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
GoToBase\CSharpGoToBaseService.cs (1)
17[ExportLanguageService(typeof(IGoToBaseService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (2)
GoToBase\GoToBaseCommandHandler.cs (2)
28internal sealed class GoToBaseCommandHandler : AbstractGoToCommandHandler<IGoToBaseService, GoToBaseCommandArgs> 52=> document.GetRequiredLanguageService<IGoToBaseService>()
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
GoToBase\GoToBaseTestsBase.vb (1)
18Dim gotoBaseService = document.GetLanguageService(Of IGoToBaseService)
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
GoToBase\VisualBasicGoToBaseService.vb (1)
12<ExportLanguageService(GetType(IGoToBaseService), LanguageNames.VisualBasic), [Shared]>