6 references to OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\Source\SourceConstructorSymbol.cs (3)
284Debug.Assert(ReferenceEquals(this.OtherPartOfPartial, implementation)); 340internal SourceConstructorSymbol? SourcePartialDefinitionPart => IsPartialImplementation ? OtherPartOfPartial : null; 342internal SourceConstructorSymbol? SourcePartialImplementationPart => IsPartialDefinition ? OtherPartOfPartial : null;
Symbols\Source\SourceMemberContainerSymbol.cs (3)
4084if (constructor.OtherPartOfPartial is null) 4209(prevConstructor.IsPartialImplementation || (prevConstructor.OtherPartOfPartial is { } otherImplementation && !ReferenceEquals(otherImplementation, currentConstructor)))) 4215(prevConstructor.IsPartialDefinition || (prevConstructor.OtherPartOfPartial is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))