1 write to Label
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (1)
Graph\Element.cs (1)
19
this.
Label
= label;
7 references to Label
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (2)
Graph\Edge.cs (1)
70
return $"{
Label
} edge from {OutVertex} to {string.Join(", ", GetInVerticies())}";
Graph\Vertex.cs (1)
19
return $"{
Label
} vertex with ID {Id}";
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator.UnitTests (5)
Utilities\TestLsifJsonWriter.vb (5)
54
If edge.
Label
<> "item" Then
55
If (edgesForOutVertex.Any(Function(e) e.
Label
= edge.
Label
)) Then
56
Throw New InvalidOperationException($"The outVertex {outVertex} already has an edge with label {edge.
Label
}.")
69
Return GetLinkedVertices(Of T)(vertex, Function(e) e.
Label
= edgeLabel)