8 references to NormalizedTextSpanCollection
Microsoft.CodeAnalysis.Workspaces (8)
AbstractSyntaxFormatting.cs (1)
50
spansToFormat = new
NormalizedTextSpanCollection
(spans.Where(s_notEmpty));
CaseCorrection\AbstractCaseCorrectionService.cs (1)
50
var normalizedSpanCollection = new
NormalizedTextSpanCollection
(spans);
CodeCleanup\AbstractCodeCleanerService.cs (2)
525
var requestedSpans = new
NormalizedTextSpanCollection
(spanGetter(root));
528
var spansToAvoid = new
NormalizedTextSpanCollection
(GetSpansToAvoid(root));
PatternMatching\AllLowerCamelCaseMatcher.cs (1)
69
? new
NormalizedTextSpanCollection
(result.Value.MatchedSpansInReverse).ToImmutableArray()
PatternMatching\PatternMatcher.cs (1)
508
? new
NormalizedTextSpanCollection
(matchSpans).ToImmutableArray()
TextSpanExtensions.cs (2)
19
=> new
NormalizedTextSpanCollection
(spans);
22
=> new
NormalizedTextSpanCollection
(spans).ToImmutableArray();