6 references to OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Source\SourceConstructorSymbol.cs (3)
292
Debug.Assert(ReferenceEquals(this.
OtherPartOfPartial
, implementation));
348
internal SourceConstructorSymbol? SourcePartialDefinitionPart => IsPartialImplementation ?
OtherPartOfPartial
: null;
350
internal SourceConstructorSymbol? SourcePartialImplementationPart => IsPartialDefinition ?
OtherPartOfPartial
: null;
Symbols\Source\SourceMemberContainerSymbol.cs (3)
4057
if (constructor.
OtherPartOfPartial
is null)
4182
(prevConstructor.IsPartialImplementation || (prevConstructor.
OtherPartOfPartial
is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor))))
4188
(prevConstructor.IsPartialDefinition || (prevConstructor.
OtherPartOfPartial
is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))