6 references to OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Source\SourceConstructorSymbol.cs (3)
283
Debug.Assert(ReferenceEquals(this.
OtherPartOfPartial
, implementation));
339
internal SourceConstructorSymbol? SourcePartialDefinitionPart => IsPartialImplementation ?
OtherPartOfPartial
: null;
341
internal SourceConstructorSymbol? SourcePartialImplementationPart => IsPartialDefinition ?
OtherPartOfPartial
: null;
Symbols\Source\SourceMemberContainerSymbol.cs (3)
3751
if (constructor.
OtherPartOfPartial
is null)
3876
(prevConstructor.IsPartialImplementation || (prevConstructor.
OtherPartOfPartial
is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor))))
3882
(prevConstructor.IsPartialDefinition || (prevConstructor.
OtherPartOfPartial
is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))