5 references to GetPropertySymbol
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder.ValueChecks.cs (1)
1475
var propertySymbol =
GetPropertySymbol
(expr, out receiver, out propertySyntax);
Binder\Binder_Patterns.cs (1)
350
lengthProperty = success ?
GetPropertySymbol
(lengthAccess, out _, out _) : null;
Binder\DecisionDagBuilder_ListPatterns.cs (1)
39
var lengthProperty = Binder.
GetPropertySymbol
(list.LengthAccess, out _, out _);
Operations\CSharpOperationFactory.cs (2)
1581
var lengthSymbol = Binder.
GetPropertySymbol
(boundIndexerAccess.LengthOrCountAccess, out _, out _).GetPublicSymbol();
2504
lengthSymbol: Binder.
GetPropertySymbol
(boundNode.LengthAccess, out _, out _).GetPublicSymbol(),