2 overrides of TypeParameter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
1742private protected override SyntaxNode TypeParameter(string name)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
CodeGeneration\VisualBasicSyntaxGenerator.vb (1)
2779Private Protected Overrides Function TypeParameter(name As String) As SyntaxNode
6 references to TypeParameter
Microsoft.CodeAnalysis.Workspaces (6)
Editing\SyntaxGenerator.cs (6)
161name, parameters, typeParameters?.Select(n => TypeParameter(n)), returnType, accessibility, modifiers, statements); 614isRecord: false, name, typeParameters?.Select(TypeParameter), accessibility, modifiers, baseType, interfaceTypes, members); 639isRecord: false, name, typeParameters?.Select(TypeParameter), accessibility, modifiers, interfaceTypes, members); 662name, typeParameters?.Select(n => TypeParameter(n)), accessibility, interfaceTypes, members); 708name, parameters, typeParameters?.Select(n => TypeParameter(n)), returnType, accessibility, modifiers); 904=> WithTypeParameters(declaration, typeParameters.Select(n => TypeParameter(n)));