5 references to HasIntervalThatIntersectsWith
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
TriviaRewriter.cs (2)
155if (node == null || !_spans.HasIntervalThatIntersectsWith(node.FullSpan)) 167if (!_spans.HasIntervalThatIntersectsWith(token.FullSpan))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
Formatting\Engine\Trivia\TriviaDataFactory.TriviaRewriter.vb (2)
122If node Is Nothing OrElse Not Me._spans.HasIntervalThatIntersectsWith(node.FullSpan) Then 132If Not Me._spans.HasIntervalThatIntersectsWith(token.FullSpan) Then
Microsoft.CodeAnalysis.Workspaces (1)
AbstractAggregatedFormattingResult.cs (1)
77: changes.Where(s => _formattingSpans.HasIntervalThatIntersectsWith(s.Span)).ToList();