9 instantiations of PropertyStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (9)
Generated\Syntax.xml.Internal.Generated.vb (7)
7010
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
PropertyStatementSyntax
(o)
7023
ObjectBinder.RegisterTypeReader(GetType(PropertyStatementSyntax), Function(r) New
PropertyStatementSyntax
(r))
7113
Return new
PropertyStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _attributeLists, _modifiers, _propertyKeyword, _identifier, _parameterList, _asClause, _initializer, _implementsClause)
7117
Return new
PropertyStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _attributeLists, _modifiers, _propertyKeyword, _identifier, _parameterList, _asClause, _initializer, _implementsClause)
38552
Return New
PropertyStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newPropertyKeyword, newIdentifier, newParameterList, newAsClause, newInitializer, newImplementsClause)
44647
Return New
PropertyStatementSyntax
(SyntaxKind.PropertyStatement, attributeLists.Node, modifiers.Node, propertyKeyword, identifier, parameterList, asClause, initializer, implementsClause)
56725
Return New
PropertyStatementSyntax
(SyntaxKind.PropertyStatement, attributeLists.Node, modifiers.Node, propertyKeyword, identifier, parameterList, asClause, initializer, implementsClause, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
8624
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
PropertyStatementSyntax
(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.Green, Nothing), modifiers, propertyKeyword, identifier, if(parameterList IsNot Nothing, DirectCast(parameterList.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsClauseSyntax), Nothing), if(initializer IsNot Nothing, DirectCast(initializer.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax), Nothing), if(implementsClause IsNot Nothing, DirectCast(implementsClause.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax), Nothing)), Nothing, 0)
Parser\BlockContexts\PropertyBlockContext.vb (1)
126
beginBlockStmt = New
PropertyStatementSyntax
(beginBlockStmt.Kind,
30 references to PropertyStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (29)
Generated\Syntax.xml.Internal.Generated.vb (14)
4982
Friend ReadOnly _propertyStatement as
PropertyStatementSyntax
4986
Friend Sub New(ByVal kind As SyntaxKind, propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax)
5001
Friend Sub New(ByVal kind As SyntaxKind, propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax, context As ISyntaxFactoryContext)
5017
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax)
5035
Dim _propertyStatement = DirectCast(reader.ReadValue(),
PropertyStatementSyntax
)
5072
Friend ReadOnly Property PropertyStatement As InternalSyntax.
PropertyStatementSyntax
7023
ObjectBinder.RegisterTypeReader(GetType(
PropertyStatementSyntax
), Function(r) New PropertyStatementSyntax(r))
36828
Public Overridable Function VisitPropertyStatement(ByVal node As
PropertyStatementSyntax
) As VisualBasicSyntaxNode
38321
Dim newPropertyStatement = DirectCast(Visit(node._propertyStatement),
PropertyStatementSyntax
)
38531
Public Overrides Function VisitPropertyStatement(ByVal node As
PropertyStatementSyntax
) As VisualBasicSyntaxNode
43955
Friend Shared Function PropertyBlock(propertyStatement As
PropertyStatementSyntax
, accessors As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endPropertyStatement As EndBlockStatementSyntax) As PropertyBlockSyntax
44644
Friend Shared Function PropertyStatement(attributeLists As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), modifiers As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), propertyKeyword As KeywordSyntax, identifier As IdentifierTokenSyntax, parameterList As ParameterListSyntax, asClause As AsClauseSyntax, initializer As EqualsValueSyntax, implementsClause As ImplementsClauseSyntax) As
PropertyStatementSyntax
56033
Friend Function PropertyBlock(propertyStatement As
PropertyStatementSyntax
, accessors As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endPropertyStatement As EndBlockStatementSyntax) As PropertyBlockSyntax
56722
Friend Function PropertyStatement(attributeLists As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), modifiers As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), propertyKeyword As KeywordSyntax, identifier As IdentifierTokenSyntax, parameterList As ParameterListSyntax, asClause As AsClauseSyntax, initializer As EqualsValueSyntax, implementsClause As ImplementsClauseSyntax) As
PropertyStatementSyntax
Generated\Syntax.xml.Syntax.Generated.vb (4)
6039
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyBlockSyntax(kind, errors, annotations, DirectCast(propertyStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
PropertyStatementSyntax
), if(accessors IsNot Nothing, accessors.Green, Nothing), DirectCast(endPropertyStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
8677
Dim slot = DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
PropertyStatementSyntax
)._modifiers
8715
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
PropertyStatementSyntax
)._propertyKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
8733
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
PropertyStatementSyntax
)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
Parser\BlockContexts\BlockContext.vb (1)
56
_isWithinIteratorMethodOrLambdaOrProperty = DirectCast(statement,
PropertyStatementSyntax
).Modifiers.Any(SyntaxKind.IteratorKeyword)
Parser\BlockContexts\DeclarationContext.vb (2)
114
Dim propertyStatement = DirectCast(node,
PropertyStatementSyntax
)
125
node = PropertyBlockContext.ReportErrorIfHasInitializer(DirectCast(node,
PropertyStatementSyntax
))
Parser\BlockContexts\InterfaceDeclarationBlockContext.vb (1)
75
node = PropertyBlockContext.ReportErrorIfHasInitializer(DirectCast(node,
PropertyStatementSyntax
))
Parser\BlockContexts\PropertyBlockContext.vb (5)
33
Dim beginBlockStmt As
PropertyStatementSyntax
= Nothing
122
Dim beginBlockStmt As
PropertyStatementSyntax
= DirectCast(BeginStatement,
PropertyStatementSyntax
)
144
Friend Shared Function ReportErrorIfHasInitializer(propertyStatement As
PropertyStatementSyntax
) As
PropertyStatementSyntax
Parser\Parser.vb (2)
4093
) As
PropertyStatementSyntax
4167
Dim propertyStatement As
PropertyStatementSyntax
= SyntaxFactory.PropertyStatement(attributes, modifiers, propertyKeyword, ident, optionalParameters, asClause, initializer, implementsClause)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
315
Private Shared Function GenerateGreenPropertyStatement() As InternalSyntax.
PropertyStatementSyntax