6 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (6)
Symbols\MemberSymbolExtensions.cs (1)
736
is SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }
Symbols\Source\SourceMemberContainerSymbol.cs (2)
2161
case (SourceOrdinaryMethodSymbol { IsPartialDefinition: true }, SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }):
2162
case (SourceOrdinaryMethodSymbol {
IsPartialImplementation
: true }, SourceOrdinaryMethodSymbol { IsPartialDefinition: true }):
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
297
Debug.Assert(implementation.
IsPartialImplementation
);
347
return this.
IsPartialImplementation
? this.OtherPartOfPartial : null;
1030
Debug.Assert(implementation.
IsPartialImplementation
);