2 instantiations of ReferenceLocationDescriptor
Microsoft.CodeAnalysis.Features (1)
Microsoft.VisualStudio.LanguageServices (1)
18 references to ReferenceLocationDescriptor
Microsoft.CodeAnalysis.EditorFeatures (1)
Microsoft.CodeAnalysis.Features (4)
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Microsoft.VisualStudio.LanguageServices (11)
CodeLens\RemoteCodeLensReferencesService.cs (10)
66public async Task<ImmutableArray<ReferenceLocationDescriptor>?> FindReferenceLocationsAsync(Solution solution, DocumentId documentId, SyntaxNode? syntaxNode,
137private async Task<ImmutableArray<ReferenceLocationDescriptor>> FixUpDescriptorsAsync(
138Solution solution, ImmutableArray<ReferenceLocationDescriptor> descriptors, CancellationToken cancellationToken)
140using var _ = ArrayBuilder<ReferenceLocationDescriptor>.GetInstance(out var list);
141foreach (var descriptor in descriptors)
211private static (string text, int start, int length) GetReferenceInfo(ExcerptResult? reference, ReferenceLocationDescriptor descriptor)
223private static (string before1, string before2, string after1, string after2) GetReferenceTexts(ExcerptResult? reference, ExcerptResult? tooltip, ReferenceLocationDescriptor descriptor)
252private static async Task<ImmutableArray<ReferenceLocationDescriptor>?> FindReferenceLocationsWorkerAsync(Solution solution, DocumentId documentId, SyntaxNode syntaxNode,
257return ImmutableArray<ReferenceLocationDescriptor>.Empty;
263var result = await client.TryInvokeAsync<IRemoteCodeLensReferencesService, ImmutableArray<ReferenceLocationDescriptor>?>(
Microsoft.VisualStudio.LanguageServices.CodeLens (1)