3 instantiations of TagComputer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SyntacticTaggerTests.cs (2)
45var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer( 103var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer(
Microsoft.CodeAnalysis.EditorFeatures (1)
Classification\Syntactic\SyntacticClassificationTaggerProvider.cs (1)
57tagComputer = new TagComputer(this, (ITextBuffer2)buffer, _listener, _typeMap, TaggerDelay.NearImmediate.ComputeTimeDelay());
6 references to TagComputer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SyntacticTaggerTests.cs (2)
45var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer( 103var tagComputer = new SyntacticClassificationTaggerProvider.TagComputer(
Microsoft.CodeAnalysis.EditorFeatures (4)
Classification\Syntactic\SyntacticClassificationTaggerProvider.cs (2)
33private readonly ConditionalWeakTable<ITextBuffer, TagComputer> _tagComputers = new(); 55if (!_tagComputers.TryGetValue(buffer, out var tagComputer))
Classification\Syntactic\SyntacticClassificationTaggerProvider.Tagger.cs (2)
16private TagComputer? _tagComputer; 18public Tagger(TagComputer tagComputer)