9 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (9)
Symbols\MemberSymbolExtensions.cs (1)
810is SourceOrdinaryMethodSymbol { IsPartialImplementation: true }
Symbols\Source\SourceMemberContainerSymbol.cs (5)
2235case (SourceOrdinaryMethodSymbol { IsPartialDefinition: true }, SourceOrdinaryMethodSymbol { IsPartialImplementation: true }): 2236case (SourceOrdinaryMethodSymbol { IsPartialImplementation: true }, SourceOrdinaryMethodSymbol { IsPartialDefinition: true }): 4110if (method.IsPartialImplementation && method.OtherPartOfPartial is null) 4182if (currentMethod.IsPartialImplementation && 4183(prevMethod.IsPartialImplementation || (prevMethod.OtherPartOfPartial is MethodSymbol otherImplementation && (object)otherImplementation != currentMethod)))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (3)
304Debug.Assert(implementation.IsPartialImplementation); 354return this.IsPartialImplementation ? this.OtherPartOfPartial : null; 1047Debug.Assert(implementation.IsPartialImplementation);