12 references to IsPartial
Microsoft.CodeAnalysis.CSharp (12)
Symbols\MemberSymbolExtensions.cs (1)
790or SourceEventSymbol { IsPartial: true }
Symbols\Source\SourceEventSymbol.cs (6)
612else if (IsPartial && !ContainingType.IsPartial()) 616else if (IsPartial && IsExplicitInterfaceImplementation) 620else if (IsPartial && IsAbstract) 681if (IsPartial) 915internal sealed override bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 917internal 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)
5729Debug.Assert(@event.IsPartial || @event.AddMethod is not null); 5730Debug.Assert(@event.IsPartial || @event.RemoveMethod is not null);