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