9 references to SetAccessKind
Microsoft.CodeAnalysis.VisualBasic (9)
Binding\Binder_Expressions.vb (1)
1397expr = propertyAccess.SetAccessKind(PropertyAccessKind.Get)
Binding\Binder_Statements.vb (2)
1939Return propertyAccess.SetAccessKind(PropertyAccessKind.Get) 1989Return propertyAccess.SetAccessKind(PropertyAccessKind.Set)
Binding\Binder_WithBlock.vb (1)
222boundExpression = propertyAccess.SetAccessKind(PropertyAccessKind.Get)
BoundTree\BoundExpressionExtensions.vb (2)
289Return propertyAccess.SetAccessKind(newAccessKind) 327Return propertyAccess.SetAccessKind(accessKind)
Lowering\AsyncRewriter\AsyncRewriter.vb (1)
595result = DirectCast(result, BoundPropertyAccess).SetAccessKind(PropertyAccessKind.Get)
Lowering\LocalRewriter\LocalRewriter_RedimClause.vb (2)
43arrayValueAccess = DirectCast(arrayValueAccess, BoundPropertyAccess).SetAccessKind(PropertyAccessKind.Get) 77assignmentTarget = DirectCast(assignmentTarget, BoundPropertyAccess).SetAccessKind(PropertyAccessKind.Set)