12 references to IsPartial
Microsoft.CodeAnalysis.CSharp (12)
Symbols\MemberSymbolExtensions.cs (1)
802or SourceEventSymbol { IsPartial: true }
Symbols\Source\SourceEventSymbol.cs (6)
655else if (IsPartial && !ContainingType.IsPartial()) 659else if (IsPartial && IsExplicitInterfaceImplementation) 663else if (IsPartial && IsAbstract) 724if (IsPartial) 971internal sealed override bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 973internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourceFieldLikeEventSymbol.cs (3)
83else if (this.IsPartial) 91if (hasInitializer || !(this.IsExtern || this.IsAbstract || this.IsPartial)) 185if (!IsPartial || IsExtern)
Symbols\Source\SourceMemberContainerSymbol.cs (2)
5827Debug.Assert(@event.IsPartial || @event.AddMethod is not null); 5828Debug.Assert(@event.IsPartial || @event.RemoveMethod is not null);