11 references to SourceConstructorSymbol
Microsoft.CodeAnalysis.CSharp (11)
Symbols\MemberSymbolExtensions.cs (3)
727or SourceConstructorSymbol { IsPartial: true } 739or SourceConstructorSymbol { IsPartialImplementation: true } 751or SourceConstructorSymbol { IsPartialDefinition: true }
Symbols\Source\SourceConstructorSymbol.cs (8)
16private SourceConstructorSymbol? _otherPartOfPartial; 19public static SourceConstructorSymbol CreateConstructorSymbol( 279private void PartialConstructorChecks(SourceConstructorSymbol implementation, BindingDiagnosticBag diagnostics) 337internal SourceConstructorSymbol? OtherPartOfPartial => _otherPartOfPartial; 339internal SourceConstructorSymbol? SourcePartialDefinitionPart => IsPartialImplementation ? OtherPartOfPartial : null; 341internal SourceConstructorSymbol? SourcePartialImplementationPart => IsPartialDefinition ? OtherPartOfPartial : null; 347internal static void InitializePartialConstructorParts(SourceConstructorSymbol definition, SourceConstructorSymbol implementation)