7 references to IsPartial
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
799or SourcePropertySymbol { IsPartial: true }
Symbols\Source\SourcePropertySymbol.cs (2)
850internal bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 852internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (4)
787Debug.Assert(!IsPartial); 1141else if (IsPartial && !ContainingType.IsPartial()) 1145else if (IsPartial && isExplicitInterfaceImplementation) 1149else if (IsPartial && IsAbstract)