3 writes to Name
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\CallHierarchy\CallHierarchyHelpers.cs (1)
52Name = GetName(descriptor),
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Protocol\CallHierarchy\RazorCallHierarchyResolveData.cs (1)
38Name = item.Name,
Microsoft.CodeAnalysis.Remote.Razor (1)
CallHierarchy\RemoteCallHierarchyService.cs (1)
221Name = item.Name,
14 references to Name
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (8)
CallHierarchy\CallHierarchyTests.cs (8)
41Assert.Equal("C.M()", preparedItem.Name); 75var constructorCall = Assert.Single(outgoingCalls, static call => call.To.Name == "C.C()"); 76var methodCall = Assert.Single(outgoingCalls, static call => call.To.Name == "C.M()"); 124var firstCaller = Assert.Single(incomingCalls, static call => call.From.Name == "Caller.Caller1()"); 125var secondCaller = Assert.Single(incomingCalls, static call => call.From.Name == "Caller.Caller2()"); 166var methodCall = Assert.Single(outgoingCalls, static call => call.To.Name == "C.M()"); 167var propertyCall = Assert.Single(outgoingCalls, static call => call.To.Name == "C.P"); 168var fieldCall = Assert.Single(outgoingCalls, static call => call.To.Name == "C.F");
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Protocol\CallHierarchy\RazorCallHierarchyResolveData.cs (1)
38Name = item.Name,
Microsoft.CodeAnalysis.Remote.Razor (1)
CallHierarchy\RemoteCallHierarchyService.cs (1)
221Name = item.Name,
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (2)
src\Razor\src\Razor\test\Microsoft.CodeAnalysis.Razor.CohostingShared.UnitTests\Endpoints\CohostCallHierarchyEndpointTest.cs (2)
270$"Expected {expectedIncomingNames.Length} incoming calls, got {incomingCalls.Length}: {string.Join(", ", Array.ConvertAll(incomingCalls, static call => call.From.Name))}"); 300$"Expected {expectedOutgoingNames.Length} outgoing calls, got {outgoingCalls.Length}: {string.Join(", ", Array.ConvertAll(outgoingCalls, static call => call.To.Name))}");
Microsoft.VisualStudioCode.RazorExtension.UnitTests (2)
src\Razor\src\Razor\test\Microsoft.CodeAnalysis.Razor.CohostingShared.UnitTests\Endpoints\CohostCallHierarchyEndpointTest.cs (2)
270$"Expected {expectedIncomingNames.Length} incoming calls, got {incomingCalls.Length}: {string.Join(", ", Array.ConvertAll(incomingCalls, static call => call.From.Name))}"); 300$"Expected {expectedOutgoingNames.Length} outgoing calls, got {outgoingCalls.Length}: {string.Join(", ", Array.ConvertAll(outgoingCalls, static call => call.To.Name))}");