1 instantiation of SynthesizedRecordCopyCtor
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
4088
var copyCtor = new
SynthesizedRecordCopyCtor
(this, memberOffset: members.Count);
11 references to SynthesizedRecordCopyCtor
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_Expressions.cs (2)
4387
if (resultMember is null || !
SynthesizedRecordCopyCtor
.HasCopyConstructorSignature(resultMember))
4400
SynthesizedRecordCopyCtor
.HasCopyConstructorSignature(constructor);
Binder\Binder_Statements.cs (4)
3627
!
SynthesizedRecordCopyCtor
.IsCopyConstructor(constructorSymbol))
3743
else if (constructor is
SynthesizedRecordCopyCtor
copyCtor)
3877
private static BoundCall? GenerateBaseCopyConstructorInitializer(
SynthesizedRecordCopyCtor
constructor, BindingDiagnosticBag diagnostics)
3884
MethodSymbol? baseConstructor =
SynthesizedRecordCopyCtor
.FindCopyConstructor(baseType, containingType, ref useSiteInfo);
Symbols\MemberSymbolExtensions.cs (1)
400
&& !(methodSymbol is
SynthesizedRecordCopyCtor
) // A record copy constructor is special, regular initializers are not supposed to be executed by it.
Symbols\Source\SourceMemberContainerSymbol.cs (2)
4088
var
copyCtor = new SynthesizedRecordCopyCtor(this, memberOffset: members.Count);
4538
!(
SynthesizedRecordCopyCtor
.HasCopyConstructorSignature(method) && method is not SynthesizedPrimaryConstructor))
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\RequiredMembersTests.cs (2)
5213
if (copyCtor is
SynthesizedRecordCopyCtor
)
5275
if (copyCtor is
SynthesizedRecordCopyCtor
)