8 instantiations of XmlElementStartTagSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
28843
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
XmlElementStartTagSyntax
(o)
28855
ObjectBinder.RegisterTypeReader(GetType(XmlElementStartTagSyntax), Function(r) New
XmlElementStartTagSyntax
(r))
28907
Return new
XmlElementStartTagSyntax
(Me.Kind, newErrors, GetAnnotations, _lessThanToken, _name, _attributes, _greaterThanToken)
28911
Return new
XmlElementStartTagSyntax
(Me.Kind, GetDiagnostics, annotations, _lessThanToken, _name, _attributes, _greaterThanToken)
41062
Return New
XmlElementStartTagSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newLessThanToken, newName, newAttributes.Node, newGreaterThanToken)
52625
Return New
XmlElementStartTagSyntax
(SyntaxKind.XmlElementStartTag, lessThanToken, name, attributes.Node, greaterThanToken)
64703
Return New
XmlElementStartTagSyntax
(SyntaxKind.XmlElementStartTag, lessThanToken, name, attributes.Node, greaterThanToken, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
31132
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
XmlElementStartTagSyntax
(kind, errors, annotations, lessThanToken, DirectCast(name.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax), if(attributes IsNot Nothing, attributes.Green, Nothing), greaterThanToken), Nothing, 0)
24 references to XmlElementStartTagSyntax
Microsoft.CodeAnalysis.VisualBasic (23)
Generated\Syntax.xml.Internal.Generated.vb (14)
28518
Friend ReadOnly _startTag as
XmlElementStartTagSyntax
28522
Friend Sub New(ByVal kind As SyntaxKind, startTag As
XmlElementStartTagSyntax
, content As GreenNode, endTag As XmlElementEndTagSyntax)
28537
Friend Sub New(ByVal kind As SyntaxKind, startTag As
XmlElementStartTagSyntax
, content As GreenNode, endTag As XmlElementEndTagSyntax, context As ISyntaxFactoryContext)
28553
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), startTag As
XmlElementStartTagSyntax
, content As GreenNode, endTag As XmlElementEndTagSyntax)
28571
Dim _startTag = DirectCast(reader.ReadValue(),
XmlElementStartTagSyntax
)
28605
Friend ReadOnly Property StartTag As InternalSyntax.
XmlElementStartTagSyntax
28855
ObjectBinder.RegisterTypeReader(GetType(
XmlElementStartTagSyntax
), Function(r) New XmlElementStartTagSyntax(r))
37500
Public Overridable Function VisitXmlElementStartTag(ByVal node As
XmlElementStartTagSyntax
) As VisualBasicSyntaxNode
41022
Dim newStartTag = DirectCast(Visit(node._startTag),
XmlElementStartTagSyntax
)
41049
Public Overrides Function VisitXmlElementStartTag(ByVal node As
XmlElementStartTagSyntax
) As VisualBasicSyntaxNode
52575
Friend Shared Function XmlElement(startTag As
XmlElementStartTagSyntax
, content As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endTag As XmlElementEndTagSyntax) As XmlElementSyntax
52621
Friend Shared Function XmlElementStartTag(lessThanToken As PunctuationSyntax, name As XmlNodeSyntax, attributes As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), greaterThanToken As PunctuationSyntax) As
XmlElementStartTagSyntax
64653
Friend Function XmlElement(startTag As
XmlElementStartTagSyntax
, content As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endTag As XmlElementEndTagSyntax) As XmlElementSyntax
64699
Friend Function XmlElementStartTag(lessThanToken As PunctuationSyntax, name As XmlNodeSyntax, attributes As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), greaterThanToken As PunctuationSyntax) As
XmlElementStartTagSyntax
Generated\Syntax.xml.Syntax.Generated.vb (3)
30901
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementSyntax(kind, errors, annotations, DirectCast(startTag.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
XmlElementStartTagSyntax
), if(content IsNot Nothing, content.Green, Nothing), DirectCast(endTag.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementEndTagSyntax)), Nothing, 0)
31137
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
XmlElementStartTagSyntax
)._lessThanToken, Me.Position, 0)
31189
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
XmlElementStartTagSyntax
)._greaterThanToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
Parser\ParseXml.vb (6)
609
Dim startElement = DirectCast(xml,
XmlElementStartTagSyntax
)
2091
Public Overrides Function VisitXmlElementStartTag(node As
XmlElementStartTagSyntax
) As VisualBasicSyntaxNode
2422
Private ReadOnly _start As
XmlElementStartTagSyntax
2426
Public Sub New(pool As SyntaxListPool, start As
XmlElementStartTagSyntax
)
2436
Public ReadOnly Property StartElement As
XmlElementStartTagSyntax
2457
Return InternalSyntaxFactory.XmlElement(DirectCast(_start.AddError(diagnostic),
XmlElementStartTagSyntax
), contentList, endElement)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
1279
Private Shared Function GenerateGreenXmlElementStartTag() As InternalSyntax.
XmlElementStartTagSyntax