3 instantiations of TagComputer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SyntacticTaggerTests.cs (2)
44var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer( 98var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer(
Microsoft.CodeAnalysis.EditorFeatures (1)
Classification\Syntactic\SyntacticClassificationTaggerProvider.TagComputer.cs (1)
126s_uniqueKey, () => new TagComputer(taggerProvider, subjectBuffer, TaggerDelay.NearImmediate.ComputeTimeDelay()));
8 references to TagComputer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SyntacticTaggerTests.cs (2)
44var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer( 98var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer(
Microsoft.CodeAnalysis.EditorFeatures (6)
Classification\Syntactic\SyntacticClassificationTaggerProvider.cs (1)
34return new Tagger(TagComputer.GetOrCreate(this, (ITextBuffer2)buffer));
Classification\Syntactic\SyntacticClassificationTaggerProvider.TagComputer.cs (2)
120public static TagComputer GetOrCreate( 125var tagComputer = subjectBuffer.Properties.GetOrCreateSingletonProperty(
Classification\Syntactic\SyntacticClassificationTaggerProvider.Tagger.cs (3)
17private TagComputer? _tagComputer; 19public Tagger(TagComputer tagComputer) 29var tagComputer = _tagComputer ?? throw new ObjectDisposedException(GetType().FullName);