5 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
737
or SourcePropertySymbol {
IsPartialImplementation
: true }
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
818
public sealed override MethodSymbol? PartialDefinitionPart => _property is SourcePropertySymbol {
IsPartialImplementation
: true, OtherPartOfPartial: { } other }
823
internal bool IsPartialImplementation => _property is SourcePropertySymbol {
IsPartialImplementation
: true };
Symbols\Source\SourcePropertySymbol.cs (2)
836
internal SourcePropertySymbol? SourcePartialDefinitionPart =>
IsPartialImplementation
? OtherPartOfPartial : null;
845
Debug.Assert(implementation.
IsPartialImplementation
);