12 references to IsPartial
Microsoft.CodeAnalysis.CSharp (12)
Symbols\MemberSymbolExtensions.cs (1)
802or SourceEventSymbol { IsPartial: true }
Symbols\Source\SourceEventSymbol.cs (6)
657else if (IsPartial && !ContainingType.IsPartial()) 661else if (IsPartial && IsExplicitInterfaceImplementation) 665else if (IsPartial && IsAbstract) 726if (IsPartial) 990internal sealed override bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 992internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourceFieldLikeEventSymbol.cs (3)
83else if (this.IsPartial) 91if (hasInitializer || !(this.IsExtern || this.IsAbstract || this.IsPartial)) 192if (!IsPartial || IsExtern)
Symbols\Source\SourceMemberContainerSymbol.cs (2)
5960Debug.Assert(@event.IsPartial || @event.AddMethod is not null); 5961Debug.Assert(@event.IsPartial || @event.RemoveMethod is not null);