8 instantiations of TypeArgumentListSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
31514
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
TypeArgumentListSyntax
(o)
31526
ObjectBinder.RegisterTypeReader(GetType(TypeArgumentListSyntax), Function(r) New
TypeArgumentListSyntax
(r))
31587
Return new
TypeArgumentListSyntax
(Me.Kind, newErrors, GetAnnotations, _openParenToken, _ofKeyword, _arguments, _closeParenToken)
31591
Return new
TypeArgumentListSyntax
(Me.Kind, GetDiagnostics, annotations, _openParenToken, _ofKeyword, _arguments, _closeParenToken)
41382
Return New
TypeArgumentListSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newOpenParenToken, newOfKeyword, newArguments.Node, newCloseParenToken)
53093
Return New
TypeArgumentListSyntax
(SyntaxKind.TypeArgumentList, openParenToken, ofKeyword, arguments.Node, closeParenToken)
65171
Return New
TypeArgumentListSyntax
(SyntaxKind.TypeArgumentList, openParenToken, ofKeyword, arguments.Node, closeParenToken, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
33591
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
TypeArgumentListSyntax
(kind, errors, annotations, openParenToken, ofKeyword, if(arguments IsNot Nothing, arguments.Green, Nothing), closeParenToken), Nothing, 0)
23 references to TypeArgumentListSyntax
Microsoft.CodeAnalysis.VisualBasic (22)
Generated\Syntax.xml.Internal.Generated.vb (14)
31097
Friend ReadOnly _typeArgumentList as
TypeArgumentListSyntax
31099
Friend Sub New(ByVal kind As SyntaxKind, identifier As InternalSyntax.IdentifierTokenSyntax, typeArgumentList As
TypeArgumentListSyntax
)
31108
Friend Sub New(ByVal kind As SyntaxKind, identifier As InternalSyntax.IdentifierTokenSyntax, typeArgumentList As
TypeArgumentListSyntax
, context As ISyntaxFactoryContext)
31118
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), identifier As InternalSyntax.IdentifierTokenSyntax, typeArgumentList As
TypeArgumentListSyntax
)
31130
Dim _typeArgumentList = DirectCast(reader.ReadValue(),
TypeArgumentListSyntax
)
31155
Friend ReadOnly Property TypeArgumentList As InternalSyntax.
TypeArgumentListSyntax
31526
ObjectBinder.RegisterTypeReader(GetType(
TypeArgumentListSyntax
), Function(r) New TypeArgumentListSyntax(r))
37596
Public Overridable Function VisitTypeArgumentList(ByVal node As
TypeArgumentListSyntax
) As VisualBasicSyntaxNode
41329
Dim newTypeArgumentList = DirectCast(Visit(node._typeArgumentList),
TypeArgumentListSyntax
)
41369
Public Overrides Function VisitTypeArgumentList(ByVal node As
TypeArgumentListSyntax
) As VisualBasicSyntaxNode
52997
Friend Shared Function GenericName(identifier As IdentifierTokenSyntax, typeArgumentList As
TypeArgumentListSyntax
) As GenericNameSyntax
53089
Friend Shared Function TypeArgumentList(openParenToken As PunctuationSyntax, ofKeyword As KeywordSyntax, arguments As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(of GreenNode), closeParenToken As PunctuationSyntax) As
TypeArgumentListSyntax
65075
Friend Function GenericName(identifier As IdentifierTokenSyntax, typeArgumentList As
TypeArgumentListSyntax
) As GenericNameSyntax
65167
Friend Function TypeArgumentList(openParenToken As PunctuationSyntax, ofKeyword As KeywordSyntax, arguments As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(of GreenNode), closeParenToken As PunctuationSyntax) As
TypeArgumentListSyntax
Generated\Syntax.xml.Syntax.Generated.vb (4)
33247
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GenericNameSyntax(kind, errors, annotations, identifier, DirectCast(typeArgumentList.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
TypeArgumentListSyntax
)), Nothing, 0)
33599
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
TypeArgumentListSyntax
)._openParenToken, Me.Position, 0)
33617
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
TypeArgumentListSyntax
)._ofKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
33661
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
TypeArgumentListSyntax
)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
Parser\Parser.vb (3)
93
Dim typeArguments As
TypeArgumentListSyntax
= Nothing
3088
) As
TypeArgumentListSyntax
3096
Dim genericArguments As
TypeArgumentListSyntax
Parser\ParseTerminal.vb (1)
150
Dim Arguments As
TypeArgumentListSyntax
= ParseGenericArguments(
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
1359
Private Shared Function GenerateGreenTypeArgumentList() As InternalSyntax.
TypeArgumentListSyntax