7 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
814or SourceEventSymbol { IsPartialImplementation: true }
Symbols\Source\SourceEventAccessorSymbol.cs (2)
248public sealed override MethodSymbol? PartialDefinitionPart => _event is { IsPartialImplementation: true, OtherPartOfPartial: { } other } 254internal bool IsPartialImplementation => _event.IsPartialImplementation;
Symbols\Source\SourceEventSymbol.cs (2)
1006internal SourceEventSymbol? SourcePartialDefinitionPart => IsPartialImplementation ? OtherPartOfPartial : null; 1017Debug.Assert(implementation.IsPartialImplementation);
Symbols\Source\SourceMemberContainerSymbol.cs (2)
4378if (currentEvent.IsPartialImplementation && 4379(prevEvent.IsPartialImplementation || (prevEvent.OtherPartOfPartial is { } otherImplementation && !ReferenceEquals(otherImplementation, currentEvent))))