4 references to DiffResult
Microsoft.CodeAnalysis.EditorFeatures (4)
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (4)
64
RaiseTagsChanged(snapshot.TextBuffer, new
DiffResult
(added: null, removed: new(oldTagTree.GetSpans(snapshot).Select(s => s.Span))));
424
bufferToChanges[latestBuffer] = new
DiffResult
(added: new(latestSpans.GetSpans(snapshot).Select(t => t.Span)), removed: null);
433
bufferToChanges[oldBuffer] = new
DiffResult
(added: null, removed: new(previousSpans.GetSpans(oldBuffer.CurrentSnapshot).Select(t => t.Span)));
512
return new
DiffResult
(new(added), new(removed));