1 instantiation of BoundPropertyGroup
Microsoft.CodeAnalysis.VisualBasic (1)
Generated\BoundNodes.xml.Generated.vb (1)
2755Dim result = New BoundPropertyGroup(Me.Syntax, properties, resultKind, receiverOpt, qualificationKind, Me.HasErrors)
32 references to BoundPropertyGroup
Microsoft.CodeAnalysis.VisualBasic (32)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
1706Dim propertyGroup As BoundPropertyGroup = node.PropertyGroupOpt 2368Public Overrides Function VisitPropertyGroup(node As BoundPropertyGroup) As BoundNode
Binding\Binder_Expressions.vb (3)
747Dim group = DirectCast(argument, BoundPropertyGroup) 920Dim propertyGroup = DirectCast(group, BoundPropertyGroup) 3791DirectCast(defaultPropertyGroup, BoundPropertyGroup),
Binding\Binder_Invocation.vb (2)
696Dim propertyGroup = DirectCast(group, BoundPropertyGroup) 966Dim propertyGroup = DirectCast(group, BoundPropertyGroup)
Binding\Binder_Statements.vb (1)
2740TryCast(lateInvocation.MethodOrPropertyGroupOpt, BoundPropertyGroup) IsNot Nothing Then
Binding\MemberSemanticModel.vb (1)
2289Dim boundGroup As BoundPropertyGroup = node.PropertyGroupOpt
BoundTree\BoundExpressionExtensions.vb (1)
594symbols.AddRange(DirectCast(node, BoundPropertyGroup).Properties)
BoundTree\BoundMethodOrPropertyGroup.vb (2)
27Dim properties = DirectCast(Me, BoundPropertyGroup).Properties 48Return DirectCast(Me, BoundPropertyGroup).Properties(0).ContainingType
BoundTree\BoundPropertyAccess.vb (1)
18Public Sub New(syntax As SyntaxNode, propertySymbol As PropertySymbol, propertyGroupOpt As BoundPropertyGroup, accessKind As PropertyAccessKind, isWriteable As Boolean, receiverOpt As BoundExpression, arguments As ImmutableArray(Of BoundExpression),
BoundTree\BoundTreeVisitor.vb (1)
56Return VisitPropertyGroup(CType(node, BoundPropertyGroup), arg)
Compilation\SemanticModel.vb (1)
1346Dim propertyGroup = DirectCast(boundNodes.LowestBoundNode, BoundPropertyGroup)
Generated\BoundNodes.xml.Generated.vb (12)
2753Public Function Update(properties As ImmutableArray(Of PropertySymbol), resultKind As LookupResultKind, receiverOpt As BoundExpression, qualificationKind As QualificationKind) As BoundPropertyGroup 4195Public Sub New(syntax As SyntaxNode, propertySymbol As PropertySymbol, propertyGroupOpt As BoundPropertyGroup, accessKind As PropertyAccessKind, isWriteable As Boolean, isLValue As Boolean, receiverOpt As BoundExpression, arguments As ImmutableArray(Of BoundExpression), defaultArguments As BitVector, type As TypeSymbol, Optional hasErrors As Boolean = False) 4225Private ReadOnly _PropertyGroupOpt As BoundPropertyGroup 4226Public ReadOnly Property PropertyGroupOpt As BoundPropertyGroup 4279Public Function Update(propertySymbol As PropertySymbol, propertyGroupOpt As BoundPropertyGroup, accessKind As PropertyAccessKind, isWriteable As Boolean, isLValue As Boolean, receiverOpt As BoundExpression, arguments As ImmutableArray(Of BoundExpression), defaultArguments As BitVector, type As TypeSymbol) As BoundPropertyAccess 9427Return VisitPropertyGroup(CType(node, BoundPropertyGroup), arg) 9883Public Overridable Function VisitPropertyGroup(node As BoundPropertyGroup, arg As A) As R 10586Public Overridable Function VisitPropertyGroup(node As BoundPropertyGroup) As BoundNode 11339Public Overrides Function VisitPropertyGroup(node As BoundPropertyGroup) As BoundNode 12335Public Overrides Function VisitPropertyGroup(node As BoundPropertyGroup) As BoundNode 12511Dim propertyGroupOpt As BoundPropertyGroup = node.PropertyGroupOpt 13533Public Overrides Function VisitPropertyGroup(node As BoundPropertyGroup, arg As Object) As TreeDumperNode
Lowering\AsyncRewriter\AsyncRewriter.vb (2)
602Private Function FindPropertyAndReturnPropertyGroup(receiver As BoundExpression, type As TypeSymbol, propertyName As String) As BoundPropertyGroup 603Dim group As BoundPropertyGroup = Nothing
Lowering\StateMachineRewriter\StateMachineRewriter.StateMachineMethodToClassRewriter.vb (1)
618Public NotOverridable Overrides Function VisitPropertyGroup(node As BoundPropertyGroup) As BoundNode
Semantics\OverloadResolution.vb (2)
875Dim propertyGroup = DirectCast(group, BoundPropertyGroup) 1078propertyGroup As BoundPropertyGroup,