8 instantiations of AttributeSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
10391
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
AttributeSyntax
(o)
10402
ObjectBinder.RegisterTypeReader(GetType(AttributeSyntax), Function(r) New
AttributeSyntax
(r))
10459
Return new
AttributeSyntax
(Me.Kind, newErrors, GetAnnotations, _target, _name, _argumentList)
10463
Return new
AttributeSyntax
(Me.Kind, GetDiagnostics, annotations, _target, _name, _argumentList)
38920
Return New
AttributeSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newTarget, newName, newArgumentList)
45452
Dim result = New
AttributeSyntax
(SyntaxKind.Attribute, target, name, argumentList)
57530
Dim result = New
AttributeSyntax
(SyntaxKind.Attribute, target, name, argumentList, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
12164
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
AttributeSyntax
(kind, errors, annotations, if(target IsNot Nothing, DirectCast(target.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeTargetSyntax), Nothing), DirectCast(name.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(argumentList IsNot Nothing, DirectCast(argumentList.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing)), Nothing, 0)
14 references to AttributeSyntax
Microsoft.CodeAnalysis.VisualBasic (13)
Generated\Syntax.xml.Internal.Generated.vb (10)
10266
Friend ReadOnly Property Attributes As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(Of
AttributeSyntax
)
10268
Return new Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(Of
AttributeSyntax
)(New Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of
AttributeSyntax
)(Me._attributes))
10402
ObjectBinder.RegisterTypeReader(GetType(
AttributeSyntax
), Function(r) New AttributeSyntax(r))
36932
Public Overridable Function VisitAttribute(ByVal node As
AttributeSyntax
) As VisualBasicSyntaxNode
38909
Public Overrides Function VisitAttribute(ByVal node As
AttributeSyntax
) As VisualBasicSyntaxNode
45443
Friend Shared Function Attribute(target As AttributeTargetSyntax, name As TypeSyntax, argumentList As ArgumentListSyntax) As
AttributeSyntax
45449
Return DirectCast(cached,
AttributeSyntax
)
57521
Friend Function Attribute(target As AttributeTargetSyntax, name As TypeSyntax, argumentList As ArgumentListSyntax) As
AttributeSyntax
57527
Return DirectCast(cached,
AttributeSyntax
)
Parser\Parser.vb (3)
5430
Dim attributes = _pool.AllocateSeparated(Of
AttributeSyntax
)()
5455
Dim attributes = _pool.AllocateSeparated(Of
AttributeSyntax
)()
5532
Dim attribute As
AttributeSyntax
= SyntaxFactory.Attribute(optionalTarget, typeName, arguments)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
419
Private Shared Function GenerateGreenAttribute() As InternalSyntax.
AttributeSyntax