Binder\Binder.ValueChecks.cs (17)
68internal static MethodInfo Create(PropertySymbol property)
76internal static MethodInfo Create(PropertySymbol property, AccessorKind accessorKind) =>
1685var propertySymbol = GetPropertySymbol(expr, out receiver, out propertySyntax);
2512case PropertySymbol property:
3465var indexerSymbol = indexerAccess.Indexer;
3487var indexerSymbol = indexerAccess.Indexer;
3764var indexerSymbol = indexerAccess.Indexer;
3795var indexerSymbol = indexerAccess.Indexer;
3906var propertySymbol = propertyAccess.PropertySymbol;
4166var indexerSymbol = indexerAccess.Indexer;
4188var indexerSymbol = indexerAccess.Indexer;
4606PropertySymbol { IsIndexer: true } indexer => getIndexerEscape(indexer, left, rightEscape),
4607PropertySymbol property => getPropertyEscape(property, rightEscape),
4624PropertySymbol indexer,
4677PropertySymbol property,
4891var indexerSymbol = indexerAccess.Indexer;
4917var indexerSymbol = indexerAccess.Indexer;
Binder\Binder_Expressions.cs (34)
1506ContainingMember() is MethodSymbol { MethodKind: MethodKind.PropertyGet or MethodKind.PropertySet, AssociatedSymbol: PropertySymbol { IsIndexer: false } })
2198return BindPropertyAccess(node, receiver, (PropertySymbol)symbol, diagnostics, resultKind, hasErrors: isError);
6021PropertySymbol propertySymbol,
8208resultType = ((PropertySymbol)symbolOpt).Type;
8341result = BindPropertyAccess(node, left, (PropertySymbol)symbol, diagnostics, lookupResult.Kind, hasErrors: wasError);
8706PropertySymbol propertySymbol,
8985foreach (PropertySymbol property in members)
9321return BindDynamicIndexer(node, expr, arguments, ImmutableArray<PropertySymbol>.Empty, diagnostics);
9645ArrayBuilder<PropertySymbol> indexerGroup = ArrayBuilder<PropertySymbol>.GetInstance();
9649indexerGroup.Add((PropertySymbol)symbol);
9660private static readonly Func<PropertySymbol, bool> s_isIndexedPropertyWithNonOptionalArguments = property =>
9711private BoundExpression BindIndexedPropertyAccess(SyntaxNode syntax, BoundExpression receiver, ImmutableArray<PropertySymbol> propertyGroup, AnalyzedArguments arguments, BindingDiagnosticBag diagnostics)
9716var properties = ArrayBuilder<PropertySymbol>.GetInstance();
9728ImmutableArray<PropertySymbol> applicableProperties,
9771ArrayBuilder<PropertySymbol> propertyGroup,
9776OverloadResolutionResult<PropertySymbol> overloadResolutionResult = OverloadResolutionResult<PropertySymbol>.GetInstance();
9811ArrayBuilder<PropertySymbol> propertyGroup,
9813OverloadResolutionResult<PropertySymbol> overloadResolutionResult,
9824ImmutableArray<PropertySymbol> candidates = propertyGroup.ToImmutable();
9838var candidate = candidates[0];
9859PropertySymbol property = (candidates.Length == 1) ? candidates[0] : CreateErrorPropertySymbol(candidates);
9872MemberResolutionResult<PropertySymbol> resolutionResult = overloadResolutionResult.ValidResult;
9873PropertySymbol property = resolutionResult.Member;
9883this.CheckAndCoerceArguments<PropertySymbol>(syntax, resolutionResult, analyzedArguments, diagnostics, receiver, invokedAsExtensionMethod: false, out argsToParams);
10066candidate is PropertySymbol property &&
10076var properties = ArrayBuilder<PropertySymbol>.GetInstance();
10180if (TryLookupLengthOrCount(syntax, receiverPlaceholder.Type, lookupResult, out var lengthOrCountProperty, diagnostics))
10200[NotNullWhen(true)] out PropertySymbol? lengthOrCountProperty,
10212bool tryLookupLengthOrCount(SyntaxNode syntax, string propertyName, [NotNullWhen(true)] out PropertySymbol? valid, BindingDiagnosticBag diagnostics)
10228lookupResult.Symbols[0] is PropertySymbol property &&
10247private ErrorPropertySymbol CreateErrorPropertySymbol(ImmutableArray<PropertySymbol> propertyGroup)
10250var candidate = propertyGroup[0];
FlowAnalysis\NullableWalker.cs (29)
659predicate: member => member is PropertySymbol { IsRequired: true },
662var property = (PropertySymbol)member;
737symbol = (Symbol?)(f.AssociatedSymbol as PropertySymbol) ?? f;
748case PropertySymbol p when forcePropertyAnalysis:
819case PropertySymbol { IsRequired: true }:
821case PropertySymbol:
934var prop = symbolToInitialize as PropertySymbol ?? (symbolToInitialize as FieldSymbol)?.AssociatedSymbol as PropertySymbol;
971if (requiredMember is PropertySymbol { IsAbstract: true } abstractProperty)
974&& isFilterableOverrideOfAbstractProperty((PropertySymbol)overridingMember))
996var property = (PropertySymbol)requiredMember;
1021static bool isFilterableOverrideOfAbstractProperty(PropertySymbol property)
2060var propSymbol = propAccess.PropertySymbol;
4241((PropertySymbol?)symbol)?.Parameters ?? default, objectInitializer.ArgsToParamsOpt,
4300argumentsCompletion?.Invoke(argumentResults, ((PropertySymbol?)symbol)?.Parameters ?? default, null);
4623var property = AnonymousTypeManager.GetAnonymousTypeProperty(anonymousType, i);
4644static BoundAnonymousPropertyDeclaration? getDeclaration(BoundAnonymousObjectCreationExpression node, PropertySymbol currentProperty, ref int currentDeclarationIndex)
5598if ((member is PropertySymbol { IsIndexedProperty: false } || member.Kind == SymbolKind.Field) &&
6850PropertySymbol? property,
10127private bool IsPropertyOutputMoreStrictThanInput(PropertySymbol property)
10148var property = left switch
10201var annotations = memberSymbol switch { PropertySymbol prop => prop.GetFlowAnalysisAnnotations(), FieldSymbol field => GetFieldAnnotations(field), _ => FlowAnalysisAnnotations.None };
10805var property = node.PropertySymbol;
10832var indexer = node.Indexer;
10836indexer = (PropertySymbol)AsMemberOfType(receiverType, indexer);
10946var getMethod = ((PropertySymbol)member.OriginalDefinition).GetMethod;
Generated\BoundNodes.xml.Generated.cs (41)
339public BoundPropertyEqualsValue(SyntaxNode syntax, PropertySymbol property, ImmutableArray<LocalSymbol> locals, BoundExpression value, bool hasErrors = false)
350public PropertySymbol Property { get; }
355public BoundPropertyEqualsValue Update(PropertySymbol property, ImmutableArray<LocalSymbol> locals, BoundExpression value)
2141public BoundAwaitableInfo(SyntaxNode syntax, BoundAwaitableValuePlaceholder? awaitableInstancePlaceholder, bool isDynamic, BoundExpression? getAwaiter, PropertySymbol? isCompleted, MethodSymbol? getResult, bool hasErrors = false)
2154public PropertySymbol? IsCompleted { get; }
2160public BoundAwaitableInfo Update(BoundAwaitableValuePlaceholder? awaitableInstancePlaceholder, bool isDynamic, BoundExpression? getAwaiter, PropertySymbol? isCompleted, MethodSymbol? getResult)
5470public BoundDagPropertyEvaluation(SyntaxNode syntax, PropertySymbol property, bool isLengthOrCount, BoundDagTemp input, bool hasErrors = false)
5481public PropertySymbol Property { get; }
5487public BoundDagPropertyEvaluation Update(PropertySymbol property, bool isLengthOrCount, BoundDagTemp input)
5501public BoundDagIndexEvaluation(SyntaxNode syntax, PropertySymbol property, int index, BoundDagTemp input, bool hasErrors = false)
5512public PropertySymbol Property { get; }
5518public BoundDagIndexEvaluation Update(PropertySymbol property, int index, BoundDagTemp input)
6114public BoundPropertyGroup(SyntaxNode syntax, ImmutableArray<PropertySymbol> properties, BoundExpression? receiverOpt, LookupResultKind resultKind, bool hasErrors = false)
6123public ImmutableArray<PropertySymbol> Properties { get; }
6128public BoundPropertyGroup Update(ImmutableArray<PropertySymbol> properties, BoundExpression? receiverOpt, LookupResultKind resultKind)
7012public BoundAnonymousPropertyDeclaration(SyntaxNode syntax, PropertySymbol property, TypeSymbol type, bool hasErrors)
7022public BoundAnonymousPropertyDeclaration(SyntaxNode syntax, PropertySymbol property, TypeSymbol type)
7033public PropertySymbol Property { get; }
7038public BoundAnonymousPropertyDeclaration Update(PropertySymbol property, TypeSymbol type)
7336public BoundPropertyAccess(SyntaxNode syntax, BoundExpression? receiverOpt, ThreeState initialBindingReceiverIsSubjectToCloning, PropertySymbol propertySymbol, AccessorKind autoPropertyAccessorKind, LookupResultKind resultKind, TypeSymbol type, bool hasErrors = false)
7353public PropertySymbol PropertySymbol { get; }
7360public BoundPropertyAccess Update(BoundExpression? receiverOpt, ThreeState initialBindingReceiverIsSubjectToCloning, PropertySymbol propertySymbol, AccessorKind autoPropertyAccessorKind, LookupResultKind resultKind, TypeSymbol type)
7410public BoundIndexerAccess(SyntaxNode syntax, BoundExpression? receiverOpt, ThreeState initialBindingReceiverIsSubjectToCloning, PropertySymbol indexer, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<RefKind> argumentRefKindsOpt, bool expanded, AccessorKind accessorKind, ImmutableArray<int> argsToParamsOpt, BitVector defaultArguments, ImmutableArray<PropertySymbol> originalIndexersOpt, TypeSymbol type, bool hasErrors = false)
7434public PropertySymbol Indexer { get; }
7442public ImmutableArray<PropertySymbol> OriginalIndexersOpt { get; }
7447public BoundIndexerAccess Update(BoundExpression? receiverOpt, ThreeState initialBindingReceiverIsSubjectToCloning, PropertySymbol indexer, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<RefKind> argumentRefKindsOpt, bool expanded, AccessorKind accessorKind, ImmutableArray<int> argsToParamsOpt, BitVector defaultArguments, ImmutableArray<PropertySymbol> originalIndexersOpt, TypeSymbol type)
7551public BoundDynamicIndexerAccess(SyntaxNode syntax, BoundExpression receiver, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<RefKind> argumentRefKindsOpt, ImmutableArray<PropertySymbol> applicableIndexers, TypeSymbol type, bool hasErrors = false)
7572public ImmutableArray<PropertySymbol> ApplicableIndexers { get; }
7577public BoundDynamicIndexerAccess Update(BoundExpression receiver, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<RefKind> argumentRefKindsOpt, ImmutableArray<PropertySymbol> applicableIndexers, TypeSymbol type)
12273PropertySymbol property = GetUpdatedSymbol(node, node.Property);
12988PropertySymbol? isCompleted = GetUpdatedSymbol(node, node.IsCompleted);
13723PropertySymbol property = GetUpdatedSymbol(node, node.Property);
13730PropertySymbol property = GetUpdatedSymbol(node, node.Property);
13946ImmutableArray<PropertySymbol> properties = GetUpdatedArray(node, node.Properties);
14323PropertySymbol property = GetUpdatedSymbol(node, node.Property);
14483PropertySymbol propertySymbol = GetUpdatedSymbol(node, node.PropertySymbol);
14519PropertySymbol indexer = GetUpdatedSymbol(node, node.Indexer);
14520ImmutableArray<PropertySymbol> originalIndexersOpt = GetUpdatedArray(node, node.OriginalIndexersOpt);
14557ImmutableArray<PropertySymbol> applicableIndexers = GetUpdatedArray(node, node.ApplicableIndexers);
Symbols\Compilation_WellKnownMembers.cs (8)
245internal static Symbol? GetRuntimeMember(NamedTypeSymbol declaringType, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt)
251internal static Symbol? GetRuntimeMember(ImmutableArray<Symbol> members, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt)
330PropertySymbol property = (PropertySymbol)member;
1061internal class SpecialMembersSignatureComparer : SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol>
1090protected override TypeSymbol GetPropertyType(PropertySymbol property)
1136protected override ImmutableArray<ParameterSymbol> GetParameters(PropertySymbol property)
1180protected override bool IsByRefProperty(PropertySymbol property)
Symbols\Source\SourceMemberContainerSymbol.cs (25)
1698else if (member is FieldSymbol { AssociatedSymbol: SourcePropertySymbolBase { PartialDefinitionPart: PropertySymbol definition } implementation } &&
2190var indexersBySignature = new Dictionary<PropertySymbol, PropertySymbol>(MemberSignatureComparer.DuplicateSourceComparer);
2202PropertySymbol indexer = (PropertySymbol)symbol;
2229PropertySymbol indexer,
2232Dictionary<PropertySymbol, PropertySymbol> indexersBySignature,
2266if (indexersBySignature.TryGetValue(indexer, out var prevIndexerBySignature))
2326var propertySymbol = (PropertySymbol)symbol;
4042PropertySymbol propertySymbol,
4124private static Location GetAccessorOrPropertyLocation(PropertySymbol propertySymbol, bool getNotSet)
4143private static bool ParametersMatchPropertyAccessor(PropertySymbol propertySymbol, bool getNotSet, ImmutableArray<ParameterSymbol> methodParams)
4454PropertySymbol? equalityContract = isRecordClass ? addEqualityContract() : null;
4480Debug.Assert(isRecordClass || !members.Any(m => m is PropertySymbol { GetMethod.IsEffectivelyReadOnly: false }));
4491Debug.Assert(positionalMembers.All(p => p is PropertySymbol or FieldSymbol));
4739ImmutableArray<PropertySymbol>.Empty);
4763else if (existingMember is PropertySymbol { IsStatic: false, GetMethod: { } } prop
4821MethodSymbol addGetHashCode(PropertySymbol? equalityContract)
4855PropertySymbol addEqualityContract()
4865ImmutableArray<PropertySymbol>.Empty);
4867PropertySymbol equalityContract;
4877equalityContract = (PropertySymbol)existingEqualityContractProperty;
4914MethodSymbol addThisEquals(PropertySymbol? equalityContract)
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeSymbol.cs (16)
326(PropertySymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_ICollection__Count)!,
331(PropertySymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_ICollection__IsSynchronized)!,
336(PropertySymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_ICollection__SyncRoot)!,
346(PropertySymbol)((MethodSymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_IList__get_Item)!).AssociatedSymbol,
352(PropertySymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_IList__IsFixedSize)!,
357(PropertySymbol)compilation.GetWellKnownTypeMember(WellKnownMember.System_Collections_IList__IsReadOnly)!,
404((PropertySymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Collections_Generic_IReadOnlyCollection_T__Count)!).AsMember(iReadOnlyCollectionT),
409((PropertySymbol)((MethodSymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Collections_Generic_IReadOnlyList_T__get_Item)!).AssociatedSymbol).AsMember(iReadOnlyListT),
415((PropertySymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Collections_Generic_ICollection_T__Count)!).AsMember(iCollectionT),
420((PropertySymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Collections_Generic_ICollection_T__IsReadOnly)!).AsMember(iCollectionT),
450((PropertySymbol)((MethodSymbol)compilation.GetSpecialTypeMember(SpecialMember.System_Collections_Generic_IList_T__get_Item)!).AssociatedSymbol).AsMember(iListT),
517var listMember = (PropertySymbol)containingType.GetFieldTypeMember(WellKnownMember.System_Collections_Generic_List_T__Count);
675var listMember = (PropertySymbol)((MethodSymbol)containingType.GetFieldTypeMember(WellKnownMember.System_Collections_Generic_List_T__get_Item)).AssociatedSymbol;
728static void addProperty(ArrayBuilder<Symbol> builder, PropertySymbol property)