9 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (9)
Symbols\MemberSymbolExtensions.cs (1)
561is SourceOrdinaryMethodSymbol { IsPartialImplementation: true }
Symbols\Source\SourceMemberContainerSymbol.cs (5)
2132case (SourceOrdinaryMethodSymbol { IsPartialDefinition: true }, SourceOrdinaryMethodSymbol { IsPartialImplementation: true }): 2133case (SourceOrdinaryMethodSymbol { IsPartialImplementation: true }, SourceOrdinaryMethodSymbol { IsPartialDefinition: true }): 3651if (method.IsPartialImplementation && method.OtherPartOfPartial is null) 3684if (currentMethod.IsPartialImplementation && 3685(prevMethod.IsPartialImplementation || (prevMethod.OtherPartOfPartial is MethodSymbol otherImplementation && (object)otherImplementation != currentMethod)))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
292Debug.Assert(implementation.IsPartialImplementation); 342return this.IsPartialImplementation ? this.OtherPartOfPartial : null; 1001Debug.Assert(implementation.IsPartialImplementation);