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