1 write to TextSpan
Microsoft.CodeAnalysis.Features (1)
DocumentHighlighting\IDocumentHighlightsService.cs (1)
33TextSpan = textSpan;
5 references to TextSpan
Microsoft.CodeAnalysis.EditorFeatures (2)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (2)
196textSnapshot.GetSpan(Span.FromBounds(span.TextSpan.Start, span.TextSpan.End)), tag));
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.Features (1)
DocumentHighlighting\AbstractDocumentHighlightsService.cs (1)
86if (!tags.Any(static (t, position) => t.HighlightSpans.Any(static (hs, position) => hs.TextSpan.IntersectsWith(position), position), position))
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Highlights\DocumentHighlightHandler.cs (1)
102Range = ProtocolConversions.TextSpanToRange(h.TextSpan, text),