7 references to IsPartialImplementation
Microsoft.CodeAnalysis.CSharp (5)
Symbols\MemberSymbolExtensions.cs (1)
801
or SourceConstructorSymbol {
IsPartialImplementation
: true }
Symbols\Source\SourceConstructorSymbol.cs (2)
340
internal SourceConstructorSymbol? SourcePartialDefinitionPart =>
IsPartialImplementation
? OtherPartOfPartial : null;
351
Debug.Assert(implementation.
IsPartialImplementation
);
Symbols\Source\SourceMemberContainerSymbol.cs (2)
4235
if (currentConstructor.
IsPartialImplementation
&&
4236
(prevConstructor.
IsPartialImplementation
|| (prevConstructor.OtherPartOfPartial is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor))))
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
PartialEventsAndConstructorsTests.cs (2)
1950
Assert.False(c.
IsPartialImplementation
);
1953
Assert.True(cImpl.
IsPartialImplementation
);