6 references to OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Source\SourceConstructorSymbol.cs (3)
304Debug.Assert(ReferenceEquals(this.OtherPartOfPartial, implementation)); 365internal SourceConstructorSymbol? SourcePartialDefinitionPart => IsPartialImplementation ? OtherPartOfPartial : null; 367internal SourceConstructorSymbol? SourcePartialImplementationPart => IsPartialDefinition ? OtherPartOfPartial : null;
Symbols\Source\SourceMemberContainerSymbol.cs (3)
4259if (constructor.OtherPartOfPartial is null) 4380(prevConstructor.IsPartialImplementation || (prevConstructor.OtherPartOfPartial is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor)))) 4386(prevConstructor.IsPartialDefinition || (prevConstructor.OtherPartOfPartial is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))