6 references to IsPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\MemberSymbolExtensions.cs (1)
553or SourcePropertySymbol { IsPartial: true }
Symbols\Source\SourcePropertySymbol.cs (2)
785internal bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 787internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (3)
1082else if (IsPartial && !ContainingType.IsPartial()) 1086else if (IsPartial && isExplicitInterfaceImplementation) 1090else if (IsPartial && IsAbstract)