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)
4054
if (constructor.
OtherPartOfPartial
is null)
4179
(prevConstructor.IsPartialImplementation || (prevConstructor.
OtherPartOfPartial
is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor))))
4185
(prevConstructor.IsPartialDefinition || (prevConstructor.
OtherPartOfPartial
is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))