7 references to IsPartial
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
725or SourcePropertySymbol { IsPartial: true }
Symbols\Source\SourcePropertySymbol.cs (2)
832internal bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 834internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (4)
783Debug.Assert(!IsPartial); 1097else if (IsPartial && !ContainingType.IsPartial()) 1101else if (IsPartial && isExplicitInterfaceImplementation) 1105else if (IsPartial && IsAbstract)