3 implementations of GetLocationInfoAsync
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpLanguageDebugInfoService.cs (1)
19public Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptLanguageDebugInfoService.cs (1)
26public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpLanguageDebugInfoService.cs (1)
27public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
1 reference to GetLocationInfoAsync
Microsoft.VisualStudio.LanguageServices (1)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (1)
111var debugLocationInfo = await _languageDebugInfo.GetLocationInfoAsync(document, point, cancellationToken).ConfigureAwait(true);