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