4 instantiations of DebugLocationInfo
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\LocationInfoGetter.cs (1)
66return new DebugLocationInfo(name, lineOffset);
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptDebugLocationInfoWrapper.cs (1)
14=> UnderlyingObject = new DebugLocationInfo(name, lineOffset);
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Editor\Implementation\Debugging\FSharpDebugLocationInfo.cs (1)
14=> UnderlyingObject = new DebugLocationInfo(name, lineOffset);
Microsoft.CodeAnalysis.VisualBasic.Features (1)
Debugging\LocationInfoGetter.vb (1)
47Return New DebugLocationInfo(name, lineOffset)
11 references to DebugLocationInfo
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Debugging\LocationInfoGetterTests.cs (1)
29var locationInfo = await LocationInfoGetter.GetInfoAsync(
Microsoft.CodeAnalysis.CSharp.Features (2)
Debugging\CSharpLanguageDebugInfoService.cs (1)
25public Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Debugging\LocationInfoGetter.cs (1)
18internal static async Task<DebugLocationInfo> GetInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.EditorFeatures (2)
ExternalAccess\VSTypeScript\Api\VSTypeScriptDebugLocationInfoWrapper.cs (1)
11internal readonly DebugLocationInfo UnderlyingObject;
ExternalAccess\VSTypeScript\VSTypeScriptLanguageDebugInfoService.cs (1)
29public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Editor\Implementation\Debugging\FSharpDebugLocationInfo.cs (1)
11internal readonly DebugLocationInfo UnderlyingObject;
Internal\Editor\Implementation\Debugging\FSharpLanguageDebugInfoService.cs (1)
33public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (1)
Debugging\ILanguageDebugInfoService.cs (1)
13Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken);
Microsoft.CodeAnalysis.VisualBasic.Features (2)
Debugging\LocationInfoGetter.vb (1)
14Friend Async Function GetInfoAsync(document As Document, position As Integer, cancellationToken As CancellationToken) As Task(Of DebugLocationInfo)
Debugging\VisualBasicLanguageDebugInfoService.vb (1)
21Public Function GetLocationInfoAsync(document As Document, position As Integer, cancellationToken As CancellationToken) As Task(Of DebugLocationInfo) Implements ILanguageDebugInfoService.GetLocationInfoAsync
Microsoft.VisualStudio.LanguageServices (1)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (1)
107var debugLocationInfo = await _languageDebugInfo.GetLocationInfoAsync(document, point, cancellationToken).ConfigureAwait(false);