1 write to _highPriTagsChangedQueue
Microsoft.CodeAnalysis.EditorFeatures (1)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (1)
169
_highPriTagsChangedQueue
= new AsyncBatchingWorkQueue<NormalizedSnapshotSpanCollection>(
3 references to _highPriTagsChangedQueue
Microsoft.CodeAnalysis.EditorFeatures (3)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (1)
180
_normalPriTagsChangedQueue =
_highPriTagsChangedQueue
;
Tagging\AbstractAsynchronousTaggerProvider.TagSource_TagsChanged.cs (2)
36
_highPriTagsChangedQueue
.AddWork(change.Value.Removed);
39
var addedTagsQueue = highPriority ?
_highPriTagsChangedQueue
: _normalPriTagsChangedQueue;