27 references to PropertyStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (27)
Generated\Syntax.xml.Internal.Generated.vb (12)
3937
Friend ReadOnly _propertyStatement as
PropertyStatementSyntax
3941
Friend Sub New(ByVal kind As SyntaxKind, propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax)
3956
Friend Sub New(ByVal kind As SyntaxKind, propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax, context As ISyntaxFactoryContext)
3972
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), propertyStatement As
PropertyStatementSyntax
, accessors As GreenNode, endPropertyStatement As EndBlockStatementSyntax)
3994
Friend ReadOnly Property PropertyStatement As InternalSyntax.
PropertyStatementSyntax
28900
Public Overridable Function VisitPropertyStatement(ByVal node As
PropertyStatementSyntax
) As VisualBasicSyntaxNode
30393
Dim newPropertyStatement = DirectCast(Visit(node._propertyStatement),
PropertyStatementSyntax
)
30603
Public Overrides Function VisitPropertyStatement(ByVal node As
PropertyStatementSyntax
) As VisualBasicSyntaxNode
36027
Friend Shared Function PropertyBlock(propertyStatement As
PropertyStatementSyntax
, accessors As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endPropertyStatement As EndBlockStatementSyntax) As PropertyBlockSyntax
36716
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
48093
Friend Function PropertyBlock(propertyStatement As
PropertyStatementSyntax
, accessors As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode), endPropertyStatement As EndBlockStatementSyntax) As PropertyBlockSyntax
48782
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)
4100
) As
PropertyStatementSyntax
4174
Dim propertyStatement As
PropertyStatementSyntax
= SyntaxFactory.PropertyStatement(attributes, modifiers, propertyKeyword, ident, optionalParameters, asClause, initializer, implementsClause)