12 references to IsPartial
Microsoft.CodeAnalysis.CSharp (12)
Symbols\MemberSymbolExtensions.cs (1)
556or SourceEventSymbol { IsPartial: true }
Symbols\Source\SourceEventSymbol.cs (6)
611else if (IsPartial && !ContainingType.IsPartial()) 615else if (IsPartial && IsExplicitInterfaceImplementation) 619else if (IsPartial && IsAbstract) 680if (IsPartial) 914internal sealed override bool IsPartialDefinition => IsPartial && !AccessorsHaveImplementation && !HasExternModifier; 916internal bool IsPartialImplementation => IsPartial && (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourceFieldLikeEventSymbol.cs (3)
82else if (this.IsPartial) 90if (hasInitializer || !(this.IsExtern || this.IsAbstract || this.IsPartial)) 184if (!IsPartial || IsExtern)
Symbols\Source\SourceMemberContainerSymbol.cs (2)
5318Debug.Assert(@event.IsPartial || @event.AddMethod is not null); 5319Debug.Assert(@event.IsPartial || @event.RemoveMethod is not null);