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