8 instantiations of ModuleStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
2788
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
ModuleStatementSyntax
(o)
2797
ObjectBinder.RegisterTypeReader(GetType(ModuleStatementSyntax), Function(r) New
ModuleStatementSyntax
(r))
2833
Return new
ModuleStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _attributeLists, _modifiers, _moduleKeyword, _identifier, _typeParameterList)
2837
Return new
ModuleStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _attributeLists, _modifiers, _moduleKeyword, _identifier, _typeParameterList)
38047
Return New
ModuleStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newModuleKeyword, newIdentifier, newTypeParameterList)
43166
Return New
ModuleStatementSyntax
(SyntaxKind.ModuleStatement, attributeLists.Node, modifiers.Node, moduleKeyword, identifier, typeParameterList)
55244
Return New
ModuleStatementSyntax
(SyntaxKind.ModuleStatement, attributeLists.Node, modifiers.Node, moduleKeyword, identifier, typeParameterList, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
3176
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ModuleStatementSyntax
(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.Green, Nothing), modifiers, moduleKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing)), Nothing, 0)
20 references to ModuleStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (19)
Generated\Syntax.xml.Internal.Generated.vb (14)
1658
Friend ReadOnly _moduleStatement as
ModuleStatementSyntax
1661
Friend Sub New(ByVal kind As SyntaxKind, moduleStatement As
ModuleStatementSyntax
, [inherits] As GreenNode, [implements] As GreenNode, members As GreenNode, endModuleStatement As EndBlockStatementSyntax)
1672
Friend Sub New(ByVal kind As SyntaxKind, moduleStatement As
ModuleStatementSyntax
, [inherits] As GreenNode, [implements] As GreenNode, members As GreenNode, endModuleStatement As EndBlockStatementSyntax, context As ISyntaxFactoryContext)
1684
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), moduleStatement As
ModuleStatementSyntax
, [inherits] As GreenNode, [implements] As GreenNode, members As GreenNode, endModuleStatement As EndBlockStatementSyntax)
1698
Dim _moduleStatement = DirectCast(reader.ReadValue(),
ModuleStatementSyntax
)
1729
Friend ReadOnly Property ModuleStatement As InternalSyntax.
ModuleStatementSyntax
2797
ObjectBinder.RegisterTypeReader(GetType(
ModuleStatementSyntax
), Function(r) New ModuleStatementSyntax(r))
36712
Public Overridable Function VisitModuleStatement(ByVal node As
ModuleStatementSyntax
) As VisualBasicSyntaxNode
37904
Dim newModuleStatement = DirectCast(Visit(node._moduleStatement),
ModuleStatementSyntax
)
38032
Public Overrides Function VisitModuleStatement(ByVal node As
ModuleStatementSyntax
) As VisualBasicSyntaxNode
42970
Friend Shared Function ModuleBlock(moduleStatement As
ModuleStatementSyntax
, [inherits] As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), [implements] As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), members As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endModuleStatement As EndBlockStatementSyntax) As ModuleBlockSyntax
43163
Friend Shared Function ModuleStatement(attributeLists As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), modifiers As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), moduleKeyword As KeywordSyntax, identifier As IdentifierTokenSyntax, typeParameterList As TypeParameterListSyntax) As
ModuleStatementSyntax
55048
Friend Function ModuleBlock(moduleStatement As
ModuleStatementSyntax
, [inherits] As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), [implements] As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), members As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endModuleStatement As EndBlockStatementSyntax) As ModuleBlockSyntax
55241
Friend Function ModuleStatement(attributeLists As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), modifiers As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), moduleKeyword As KeywordSyntax, identifier As IdentifierTokenSyntax, typeParameterList As TypeParameterListSyntax) As
ModuleStatementSyntax
Generated\Syntax.xml.Syntax.Generated.vb (4)
1625
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleBlockSyntax(kind, errors, annotations, DirectCast(moduleStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ModuleStatementSyntax
), if([inherits] IsNot Nothing, [inherits].Green, Nothing), if([implements] IsNot Nothing, [implements].Green, Nothing), if(members IsNot Nothing, members.Green, Nothing), DirectCast(endModuleStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
3227
Dim slot = DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ModuleStatementSyntax
)._modifiers
3265
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ModuleStatementSyntax
)._moduleKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
3283
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
ModuleStatementSyntax
)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
Syntax\InternalSyntax\SyntaxNodeFactories.vb (1)
532
Return SyntaxFactory.ModuleBlock(DirectCast(begin,
ModuleStatementSyntax
), [inherits], [implements], members, [end])
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
175
Private Shared Function GenerateGreenModuleStatement() As InternalSyntax.
ModuleStatementSyntax