8 references to NormalizedTextSpanCollection
Microsoft.CodeAnalysis.Workspaces (8)
AbstractSyntaxFormatting.cs (1)
50spansToFormat = new NormalizedTextSpanCollection(spans.Where(s_notEmpty));
CaseCorrection\AbstractCaseCorrectionService.cs (1)
50var normalizedSpanCollection = new NormalizedTextSpanCollection(spans);
CodeCleanup\AbstractCodeCleanerService.cs (2)
525var requestedSpans = new NormalizedTextSpanCollection(spanGetter(root)); 528var 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();