6 references to GetTypeParameters
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\Components\ComponentGenericTypePass.cs (2)
65var componentTypeParameters = node.Component.GetTypeParameters().ToList(); 254node.AddDiagnostic(ComponentDiagnosticFactory.Create_GenericComponentTypeInferenceUnderspecified(node.Source, node, node.Component.GetTypeParameters()));
Language\Components\ComponentLoweringPass.cs (2)
261foreach (var typeParam in tagHelper.GetTypeParameters()) 281foreach (var typeParam in component.GetTypeParameters())
Language\Components\ComponentNodeWriter.cs (2)
123writer.Write(string.Join(", ", node.Component.Component.GetTypeParameters().Select(serializeTypeParameter))); 302writer.Write(string.Join(", ", node.Component.Component.GetTypeParameters().Select(a => a.Name)));