9 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (9)
Symbols\MemberSymbolExtensions.cs (1)
798is SourceOrdinaryMethodSymbol { IsPartialImplementation: true }
Symbols\Source\SourceMemberContainerSymbol.cs (5)
2160case (SourceOrdinaryMethodSymbol { IsPartialDefinition: true }, SourceOrdinaryMethodSymbol { IsPartialImplementation: true }): 2161case (SourceOrdinaryMethodSymbol { IsPartialImplementation: true }, SourceOrdinaryMethodSymbol { IsPartialDefinition: true }): 4033if (method.IsPartialImplementation && method.OtherPartOfPartial is null) 4109if (currentMethod.IsPartialImplementation && 4110(prevMethod.IsPartialImplementation || (prevMethod.OtherPartOfPartial is MethodSymbol otherImplementation && (object)otherImplementation != currentMethod)))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
298Debug.Assert(implementation.IsPartialImplementation); 348return this.IsPartialImplementation ? this.OtherPartOfPartial : null; 1032Debug.Assert(implementation.IsPartialImplementation);