7 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
811or SourcePropertySymbol { IsPartialImplementation: true }
Symbols\Source\SourceMemberContainerSymbol.cs (2)
4202if (currentProperty.IsPartialImplementation && 4203(prevProperty.IsPartialImplementation || (prevProperty.OtherPartOfPartial is SourcePropertySymbol otherImplementation && (object)otherImplementation != currentProperty)))
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
872public sealed override MethodSymbol? PartialDefinitionPart => _property is SourcePropertySymbol { IsPartialImplementation: true, OtherPartOfPartial: { } other } 877internal bool IsPartialImplementation => _property is SourcePropertySymbol { IsPartialImplementation: true };
Symbols\Source\SourcePropertySymbol.cs (2)
849internal SourcePropertySymbol? SourcePartialDefinitionPart => IsPartialImplementation ? OtherPartOfPartial : null; 858Debug.Assert(implementation.IsPartialImplementation);