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