1 instantiation of TypeParameter
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Components\ComponentDocumentClassifierPass.cs (1)
122
typeParameters.Add(
new
(name.Content, name.Source, constraints?.Content, constraints?.Source));
5 references to TypeParameter
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\CodeGeneration\CodeWriterExtensions.cs (3)
688
ImmutableArray<
TypeParameter
> typeParameters,
710
var
typeParameter = typeParameters[i];
758
foreach (
var
typeParameter in typeParameters)
Language\Components\ComponentDocumentClassifierPass.cs (1)
108
using var typeParameters = new PooledArrayBuilder<
TypeParameter
>();
Language\Intermediate\ClassDeclarationIntermediateNode.cs (1)
15
public ImmutableArray<
TypeParameter
> TypeParameters { get; set => field = value.NullToEmpty(); } = [];