1 write to Kind
Microsoft.CodeAnalysis.Features (1)
DocumentHighlighting\IDocumentHighlightsService.cs (1)
34Kind = kind;
3 references to Kind
Microsoft.CodeAnalysis.EditorFeatures (1)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (1)
209switch (span.Kind)
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
ReferenceHighlighting\DocumentHighlightsServiceTests.vb (1)
52highlights.Select(Function(h) $"{h.Document.Name}: {String.Join(",", h.HighlightSpans.Select(Function(span) $"{span.Kind} {span.TextSpan}"))}"))
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Highlights\DocumentHighlightHandler.cs (1)
103Kind = ProtocolConversions.HighlightSpanKindToDocumentHighlightKind(h.Kind),