Base:
property
IsRecord
Microsoft.CodeAnalysis.CSharp.Symbols.TypeSymbol.IsRecord
15 references to IsRecord
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_Expressions.cs (2)
1770
ContainingType is SourceMemberContainerTypeSymbol {
IsRecord
: false, IsRecordStruct: false, PrimaryConstructor: SynthesizedPrimaryConstructor { ParameterCount: not 0 } primaryConstructor, OriginalDefinition: var containingTypeDefinition } &&
5171
sourceType.
IsRecord
&&
FlowAnalysis\DefiniteAssignment.cs (1)
1963
Diagnostics.Add((primaryCtor.ContainingType is {
IsRecord
: true } or { IsRecordStruct: true }) ?
Symbols\Source\SourceMemberContainerSymbol.cs (7)
332
if (!this.
IsRecord
)
1291
return (IsTupleType ||
IsRecord
|| IsRecordStruct || this.declaration.ContainsExtensionDeclarations) ? GetMembers().Select(m => m.Name) : this.declaration.MemberNames;
1547
=>
IsRecord
;
2870
if (
IsRecord
|| IsRecordStruct)
2921
if (this.
IsRecord
)
3764
if (this is {
IsRecord
: true } or { IsRecordStruct: true } ||
5396
if (!
IsRecord
||
Symbols\Synthesized\Records\SynthesizedPrimaryConstructor.cs (3)
91
protected override bool AllowRefOrOut => !(ContainingType is {
IsRecord
: true } or { IsRecordStruct: true });
131
if (ContainingType is {
IsRecord
: true } or { IsRecordStruct: true } || ParameterCount == 0)
176
if (ContainingType is {
IsRecord
: true } or { IsRecordStruct: true })
Symbols\Synthesized\Records\SynthesizedRecordObjectMethod.cs (1)
43
if (overridden is object && !(overridden.ContainingType is SourceMemberContainerTypeSymbol {
IsRecord
: true } && overridden.ContainingModule == overriding.ContainingModule))
Symbols\Synthesized\Records\SynthesizedRecordPrintMembers.cs (1)
41
if (containingType.
IsRecord
&& !containingType.BaseTypeNoUseSiteDiagnostics.IsObjectType())