8 references to IsPartialDefinition
Microsoft.CodeAnalysis.CSharp (8)
Symbols\MemberSymbolExtensions.cs (1)
811
or SourcePropertySymbol {
IsPartialDefinition
: true }
Symbols\PublicModel\PropertySymbol.cs (1)
117
bool IPropertySymbol.IsPartialDefinition => (_underlying as SourcePropertySymbol)?.
IsPartialDefinition
?? false;
Symbols\Source\SourcePropertyAccessorSymbol.cs (2)
814
public sealed override MethodSymbol? PartialImplementationPart => _property is SourcePropertySymbol {
IsPartialDefinition
: true, OtherPartOfPartial: { } other }
822
internal bool IsPartialDefinition => _property is SourcePropertySymbol {
IsPartialDefinition
: true };
Symbols\Source\SourcePropertySymbol.cs (4)
718
if (
IsPartialDefinition
&& OtherPartOfPartial is { } implementation)
731
Debug.Assert(this.
IsPartialDefinition
);
837
internal SourcePropertySymbol? SourcePartialImplementationPart =>
IsPartialDefinition
? OtherPartOfPartial : null;
844
Debug.Assert(definition.
IsPartialDefinition
);