3 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)
11internal readonly DebugLocationInfo UnderlyingObject = new DebugLocationInfo(name, lineOffset);
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Editor\Implementation\Debugging\FSharpDebugLocationInfo.cs (1)
14=> UnderlyingObject = new DebugLocationInfo(name, lineOffset);
9 references to DebugLocationInfo
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Debugging\LocationInfoGetterTests.cs (1)
28var locationInfo = await LocationInfoGetter.GetInfoAsync(
Microsoft.CodeAnalysis.CSharp.Features (2)
Debugging\CSharpLanguageDebugInfoService.cs (1)
19public 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 = new DebugLocationInfo(name, lineOffset);
ExternalAccess\VSTypeScript\VSTypeScriptLanguageDebugInfoService.cs (1)
26public 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)
27public 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.VisualStudio.LanguageServices (1)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (1)
111var debugLocationInfo = await _languageDebugInfo.GetLocationInfoAsync(document, point, cancellationToken).ConfigureAwait(true);