1 instantiation of BoundPropertyGroup
Microsoft.CodeAnalysis.VisualBasic (1)
Generated\BoundNodes.xml.Generated.vb (1)
2771
Dim result = New
BoundPropertyGroup
(Me.Syntax, properties, resultKind, receiverOpt, qualificationKind, Me.HasErrors)
32 references to BoundPropertyGroup
Microsoft.CodeAnalysis.VisualBasic (32)
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
1706
Dim propertyGroup As
BoundPropertyGroup
= node.PropertyGroupOpt
2368
Public Overrides Function VisitPropertyGroup(node As
BoundPropertyGroup
) As BoundNode
Binding\Binder_Expressions.vb (3)
747
Dim group = DirectCast(argument,
BoundPropertyGroup
)
920
Dim propertyGroup = DirectCast(group,
BoundPropertyGroup
)
3791
DirectCast(defaultPropertyGroup,
BoundPropertyGroup
),
Binding\Binder_Invocation.vb (2)
696
Dim propertyGroup = DirectCast(group,
BoundPropertyGroup
)
966
Dim propertyGroup = DirectCast(group,
BoundPropertyGroup
)
Binding\Binder_Statements.vb (1)
2740
TryCast(lateInvocation.MethodOrPropertyGroupOpt,
BoundPropertyGroup
) IsNot Nothing Then
Binding\MemberSemanticModel.vb (1)
2290
Dim boundGroup As
BoundPropertyGroup
= node.PropertyGroupOpt
BoundTree\BoundExpressionExtensions.vb (1)
594
symbols.AddRange(DirectCast(node,
BoundPropertyGroup
).Properties)
BoundTree\BoundMethodOrPropertyGroup.vb (2)
27
Dim properties = DirectCast(Me,
BoundPropertyGroup
).Properties
48
Return DirectCast(Me,
BoundPropertyGroup
).Properties(0).ContainingType
BoundTree\BoundPropertyAccess.vb (1)
18
Public 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)
56
Return VisitPropertyGroup(CType(node,
BoundPropertyGroup
), arg)
Compilation\SemanticModel.vb (1)
1346
Dim propertyGroup = DirectCast(boundNodes.LowestBoundNode,
BoundPropertyGroup
)
Generated\BoundNodes.xml.Generated.vb (12)
2769
Public Function Update(properties As ImmutableArray(Of PropertySymbol), resultKind As LookupResultKind, receiverOpt As BoundExpression, qualificationKind As QualificationKind) As
BoundPropertyGroup
4211
Public 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)
4241
Private ReadOnly _PropertyGroupOpt As
BoundPropertyGroup
4242
Public ReadOnly Property PropertyGroupOpt As
BoundPropertyGroup
4295
Public 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
9443
Return VisitPropertyGroup(CType(node,
BoundPropertyGroup
), arg)
9899
Public Overridable Function VisitPropertyGroup(node As
BoundPropertyGroup
, arg As A) As R
10602
Public Overridable Function VisitPropertyGroup(node As
BoundPropertyGroup
) As BoundNode
11355
Public Overrides Function VisitPropertyGroup(node As
BoundPropertyGroup
) As BoundNode
12351
Public Overrides Function VisitPropertyGroup(node As
BoundPropertyGroup
) As BoundNode
12527
Dim propertyGroupOpt As
BoundPropertyGroup
= node.PropertyGroupOpt
13549
Public Overrides Function VisitPropertyGroup(node As
BoundPropertyGroup
, arg As Object) As TreeDumperNode
Lowering\AsyncRewriter\AsyncRewriter.vb (2)
602
Private Function FindPropertyAndReturnPropertyGroup(receiver As BoundExpression, type As TypeSymbol, propertyName As String) As
BoundPropertyGroup
603
Dim group As
BoundPropertyGroup
= Nothing
Lowering\StateMachineRewriter\StateMachineRewriter.StateMachineMethodToClassRewriter.vb (1)
618
Public NotOverridable Overrides Function VisitPropertyGroup(node As
BoundPropertyGroup
) As BoundNode
Semantics\OverloadResolution.vb (2)
828
Dim propertyGroup = DirectCast(group,
BoundPropertyGroup
)
1000
propertyGroup As
BoundPropertyGroup
,