8 references to IsPartialDefinition
Microsoft.CodeAnalysis.CSharp (8)
Symbols\MemberSymbolExtensions.cs (1)
811or SourcePropertySymbol { IsPartialDefinition: true }
Symbols\PublicModel\PropertySymbol.cs (1)
117bool IPropertySymbol.IsPartialDefinition => (_underlying as SourcePropertySymbol)?.IsPartialDefinition ?? false;
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
814public sealed override MethodSymbol? PartialImplementationPart => _property is SourcePropertySymbol { IsPartialDefinition: true, OtherPartOfPartial: { } other } 822internal bool IsPartialDefinition => _property is SourcePropertySymbol { IsPartialDefinition: true };
Symbols\Source\SourcePropertySymbol.cs (4)
718if (IsPartialDefinition && OtherPartOfPartial is { } implementation) 731Debug.Assert(this.IsPartialDefinition); 837internal SourcePropertySymbol? SourcePartialImplementationPart => IsPartialDefinition ? OtherPartOfPartial : null; 844Debug.Assert(definition.IsPartialDefinition);