3 overrides of SupportsFrozenPartialSemantics
Microsoft.CodeAnalysis.EditorFeatures (2)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (1)
55protected override bool SupportsFrozenPartialSemantics => true;
Tagging\AsynchronousViewportTaggerProvider.SingleViewportTaggerProvider.cs (1)
46protected override bool SupportsFrozenPartialSemantics
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Tagging\AsynchronousTaggerTests.cs (1)
257protected override bool SupportsFrozenPartialSemantics => supportsFrozenPartialSemantics;
5 references to SupportsFrozenPartialSemantics
Microsoft.CodeAnalysis.EditorFeatures (5)
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (3)
179EnqueueWork(highPriority, _dataSource.SupportsFrozenPartialSemantics, nonFrozenComputationToken: null); 200if (!frozenPartialSemantics && _dataSource.SupportsFrozenPartialSemantics) 742this.RecomputeTagsAsync(highPriority: true, _dataSource.SupportsFrozenPartialSemantics, calledFromJtfRun: true, _disposalTokenSource.Token));
Tagging\AsynchronousViewportTaggerProvider.cs (1)
104/// <inheritdoc cref="AbstractAsynchronousTaggerProvider{TTag}.SupportsFrozenPartialSemantics"/>
Tagging\TagSourceQueueItem.cs (1)
16/// queue does support computing frozen partial semantics (see <see cref="SupportsFrozenPartialSemantics"/>)