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