2 implementations of GetResultIdForSymbol
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (2)
ResultSetTracking\DelegatingResultSetTracker.cs (1)
19public Id<T> GetResultIdForSymbol<T>(ISymbol symbol, string edgeKind, Func<IdFactory, T> vertexCreator) where T : Vertex
ResultSetTracking\SymbolHoldingResultSetTracker.cs (1)
88public Id<T> GetResultIdForSymbol<T>(ISymbol symbol, string edgeKind, Func<IdFactory, T> vertexCreator) where T : Vertex
5 references to GetResultIdForSymbol
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (5)
ResultSetTracking\DelegatingResultSetTracker.cs (1)
21return _chooseTrackerForSymbol(symbol).GetResultIdForSymbol(symbol, edgeKind, vertexCreator);
ResultSetTracking\IResultSetTracker.cs (2)
27/// Similar to <see cref="GetResultIdForSymbol{T}"/>, but instead of creating the vertex (if needed) and adding an edge, this 30/// <see cref="GetResultIdForSymbol{T}"/> would have to take.
ResultSetTracking\IResultSetTrackerExtensions.cs (2)
21=> tracker.GetResultIdForSymbol(symbol, Methods.TextDocumentReferencesName, static idFactory => new ReferenceResult(idFactory)); 28return tracker.GetResultIdForSymbol(symbol, "moniker", idFactory =>