7 references to IsPartial
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
787or SourcePropertySymbol { IsPartial: true }
Symbols\Source\SourcePropertySymbol.cs (2)
830internal bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 832internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (4)
784Debug.Assert(!IsPartial); 1103else if (IsPartial && !ContainingType.IsPartial()) 1107else if (IsPartial && isExplicitInterfaceImplementation) 1111else if (IsPartial && IsAbstract)