7 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
562
or SourcePropertySymbol {
IsPartialImplementation
: true }
Symbols\Source\SourceMemberContainerSymbol.cs (2)
3705
if (currentProperty.
IsPartialImplementation
&&
3706
(prevProperty.
IsPartialImplementation
|| (prevProperty.OtherPartOfPartial is SourcePropertySymbol otherImplementation && (object)otherImplementation != currentProperty)))
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
838
public sealed override MethodSymbol? PartialDefinitionPart => _property is SourcePropertySymbol {
IsPartialImplementation
: true, OtherPartOfPartial: { } other }
843
internal bool IsPartialImplementation => _property is SourcePropertySymbol {
IsPartialImplementation
: true };
Symbols\Source\SourcePropertySymbol.cs (2)
789
internal SourcePropertySymbol? SourcePartialDefinitionPart =>
IsPartialImplementation
? OtherPartOfPartial : null;
798
Debug.Assert(implementation.
IsPartialImplementation
);