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