6 references to GetPropertySymbol
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.ValueChecks.cs (1)
1708
var propertySymbol =
GetPropertySymbol
(expr, out receiver, out propertySyntax);
Binder\Binder_Expressions.cs (1)
5929
if (isRhsNestedInitializer &&
GetPropertySymbol
(implicitIndexer, out _, out _) is { } property)
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)
1648
var lengthSymbol = Binder.
GetPropertySymbol
(boundIndexerAccess.LengthOrCountAccess, out _, out _).GetPublicSymbol();
2621
lengthSymbol: Binder.
GetPropertySymbol
(boundNode.LengthAccess, out _, out _).GetPublicSymbol(),