8 references to TrackTextChanges
Microsoft.CodeAnalysis.EditorFeatures (8)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
40protected sealed override TaggerTextChangeBehavior TextChangeBehavior => TaggerTextChangeBehavior.TrackTextChanges;
EditAndContinue\ActiveStatementTaggerProvider.cs (1)
41protected override TaggerTextChangeBehavior TextChangeBehavior => TaggerTextChangeBehavior.TrackTextChanges;
Tagging\AbstractAsynchronousTaggerProvider.cs (1)
47/// actually changed in the file can specify <see cref="TaggerTextChangeBehavior.TrackTextChanges"/>.
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (2)
222if (_dataSource.TextChangeBehavior.HasFlag(TaggerTextChangeBehavior.TrackTextChanges)) 267if (_dataSource.TextChangeBehavior.HasFlag(TaggerTextChangeBehavior.TrackTextChanges))
Tagging\TaggerContext.cs (1)
33/// produce tags. In order to be passed this value, <see cref="TaggerTextChangeBehavior.TrackTextChanges"/>
Tagging\TaggerTextChangeBehavior.cs (2)
36RemoveTagsThatIntersectEdits = TrackTextChanges | (1 << 1), 44RemoveAllTags = TrackTextChanges | (1 << 2),