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