/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/CallHierarchy/CallHierarchyResolveData.cs
18 строк
673 B
Joey Robichaud
Add LSP CallHierarchy support (#82865)
01 апр 2026, 02:55
Не верифицирован
01 апр 2026, 02:55
83c179c
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.CodeAnalysis.CallHierarchy; using Roslyn.LanguageServer.Protocol; namespace Microsoft.CodeAnalysis.LanguageServer.Handler.CallHierarchy; internal sealed record CallHierarchyResolveData( string SymbolKeyData, Guid ProjectGuid, TextDocumentIdentifier TextDocument) : DocumentResolveData(TextDocument) { public CallHierarchyItemId GetItemId() => new(SymbolKeyData, ProjectId.CreateFromSerialized(ProjectGuid)); }