3 implementations of IBreakpointResolutionService
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpBreakpointResolutionService.cs (1)
20internal sealed class CSharpBreakpointResolutionService : IBreakpointResolutionService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptBreakpointResolutionService.cs (1)
22internal sealed class VSTypeScriptBreakpointResolutionService(IVSTypeScriptBreakpointResolutionServiceImplementation implementation) : IBreakpointResolutionService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpBreakpointResolutionService.cs (1)
20internal class FSharpBreakpointResolutionService : IBreakpointResolutionService
7 references to IBreakpointResolutionService
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), InternalLanguageNames.TypeScript)]
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), LanguageNames.FSharp)]
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Breakpoints\ValidateBreakableRangeHandler.cs (2)
38var breakpointService = document.Project.Services.GetRequiredService<IBreakpointResolutionService>();
Microsoft.VisualStudio.LanguageServices (2)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (2)
35private readonly IBreakpointResolutionService? _breakpointService; 51_breakpointService = languageServiceProvider.GetService<IBreakpointResolutionService>();