9 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (9)
Symbols\MemberSymbolExtensions.cs (1)
564
is SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }
Symbols\Source\SourceMemberContainerSymbol.cs (5)
2134
case (SourceOrdinaryMethodSymbol { IsPartialDefinition: true }, SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }):
2135
case (SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }, SourceOrdinaryMethodSymbol { IsPartialDefinition: true }):
3730
if (method.
IsPartialImplementation
&& method.OtherPartOfPartial is null)
3806
if (currentMethod.
IsPartialImplementation
&&
3807
(prevMethod.
IsPartialImplementation
|| (prevMethod.OtherPartOfPartial is MethodSymbol otherImplementation && (object)otherImplementation != currentMethod)))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
292
Debug.Assert(implementation.
IsPartialImplementation
);
342
return this.
IsPartialImplementation
? this.OtherPartOfPartial : null;
1011
Debug.Assert(implementation.
IsPartialImplementation
);