5 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
813
or SourceConstructorSymbol {
IsPartialImplementation
: true }
Symbols\Source\SourceConstructorSymbol.cs (2)
365
internal SourceConstructorSymbol? SourcePartialDefinitionPart =>
IsPartialImplementation
? OtherPartOfPartial : null;
376
Debug.Assert(implementation.
IsPartialImplementation
);
Symbols\Source\SourceMemberContainerSymbol.cs (2)
4379
if (currentConstructor.
IsPartialImplementation
&&
4380
(prevConstructor.
IsPartialImplementation
|| (prevConstructor.OtherPartOfPartial is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor))))