1 write to DeclaringTypeId
Microsoft.CodeAnalysis (1)
MemberDescriptor.cs (1)
104
this.
DeclaringTypeId
= DeclaringTypeId;
14 references to DeclaringTypeId
Microsoft.CodeAnalysis (3)
MemberDescriptor.cs (3)
53
return
DeclaringTypeId
<= (int)SpecialType.Count
54
? ((SpecialType)
DeclaringTypeId
).GetMetadataName()!
55
: ((WellKnownType)
DeclaringTypeId
).GetMetadataName();
Microsoft.CodeAnalysis.CSharp (6)
Lowering\LocalRewriter\LocalRewriter.cs (1)
559
SpecialType type = (SpecialType)descriptor.
DeclaringTypeId
;
Symbols\AssemblySymbol.cs (1)
472
Debug.Assert((SpecialType)SpecialMembers.GetDescriptor(feature).
DeclaringTypeId
== SpecialType.System_Runtime_CompilerServices_RuntimeFeature);
Symbols\Compilation_WellKnownMembers.cs (3)
96
NamedTypeSymbol type = descriptor.
DeclaringTypeId
<= (int)SpecialType.Count
97
? this.GetSpecialType((SpecialType)descriptor.
DeclaringTypeId
)
98
: this.GetWellKnownType((WellKnownType)descriptor.
DeclaringTypeId
);
Symbols\MetadataOrSourceAssemblySymbol.cs (1)
203
NamedTypeSymbol type = GetDeclaredSpecialType((SpecialType)descriptor.
DeclaringTypeId
);
Microsoft.CodeAnalysis.VisualBasic (5)
Symbols\AssemblySymbol.vb (1)
410
Debug.Assert(SpecialMembers.GetDescriptor(feature).
DeclaringTypeId
= SpecialType.System_Runtime_CompilerServices_RuntimeFeature)
Symbols\SpecialMembers.vb (1)
67
Dim type = GetDeclaredSpecialType(CType(descriptor.
DeclaringTypeId
, SpecialType))
Symbols\WellKnownMembers.vb (3)
326
Dim type = If(descriptor.
DeclaringTypeId
<= SpecialType.Count,
327
GetSpecialType(CType(descriptor.
DeclaringTypeId
, SpecialType)),
328
GetWellKnownType(CType(descriptor.
DeclaringTypeId
, WellKnownType)))