6 references to GetPropertySymbol
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.ValueChecks.cs (1)
1708var propertySymbol = GetPropertySymbol(expr, out receiver, out propertySyntax);
Binder\Binder_Expressions.cs (1)
5929if (isRhsNestedInitializer && GetPropertySymbol(implicitIndexer, out _, out _) is { } property)
Binder\Binder_Patterns.cs (1)
350lengthProperty = success ? GetPropertySymbol(lengthAccess, out _, out _) : null;
Binder\DecisionDagBuilder_ListPatterns.cs (1)
39var lengthProperty = Binder.GetPropertySymbol(list.LengthAccess, out _, out _);
Operations\CSharpOperationFactory.cs (2)
1648var lengthSymbol = Binder.GetPropertySymbol(boundIndexerAccess.LengthOrCountAccess, out _, out _).GetPublicSymbol(); 2621lengthSymbol: Binder.GetPropertySymbol(boundNode.LengthAccess, out _, out _).GetPublicSymbol(),