1 instantiation of TypeParameterCollector
Microsoft.CodeAnalysis.Features (1)
ExtractMethod\MethodExtractor.TypeParameterCollector.cs (1)
21var collector = new TypeParameterCollector();
8 references to TypeParameterCollector
Microsoft.CodeAnalysis.CSharp.Features (1)
ExtractMethod\CSharpMethodExtractor.cs (1)
191foreach (var typeParameter in TypeParameterCollector.Collect(type))
Microsoft.CodeAnalysis.Features (6)
ExtractMethod\MethodExtractor.Analyzer.cs (5)
738AddTypeParametersToMap(TypeParameterCollector.Collect(parameter.Type), sortedMap); 742AddTypeParametersToMap(TypeParameterCollector.Collect(local.Type), sortedMap); 747AddTypeParametersToMap(TypeParameterCollector.Collect(type), sortedMap); 772typeParametersInConstraint.AddRange(TypeParameterCollector.Collect(type)); 900AddTypeParametersToMap(TypeParameterCollector.Collect(returnType), sortedMap);
ExtractMethod\MethodExtractor.TypeParameterCollector.cs (1)
21var collector = new TypeParameterCollector();
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ExtractMethod\VisualBasicMethodExtractor.vb (1)
103For Each typeParameter In TypeParameterCollector.Collect(type)