1 write to Type
Microsoft.CodeAnalysis (1)
PEWriter\ExportedType.cs (1)
31
Type
= type;
9 references to Type
Microsoft.CodeAnalysis (5)
PEWriter\ExportedType.cs (1)
24
/// If <see cref="
Type
"/> is a nested type defined in a linked netmodule,
PEWriter\MetadataWriter.cs (3)
2241
if ((namespaceTypeRef = exportedType.
Type
.AsNamespaceTypeReference) != null)
2251
else if ((nestedRef = exportedType.
Type
.AsNestedTypeReference) != null)
2273
typeDefinitionId: exportedType.IsForwarder ? 0 : MetadataTokens.GetToken(exportedType.
Type
.TypeDef));
PEWriter\ReferenceIndexer.cs (1)
39
VisitExportedType(exportedType.
Type
);
Microsoft.CodeAnalysis.CSharp (4)
Emitter\Model\PEModuleBuilder.cs (4)
722
Debug.Assert(exportedType.
Type
.AsGenericTypeInstanceReference is null);
723
Debug.Assert(exportedType.
Type
.AsSpecializedNestedTypeReference is null);
725
if (exportedType.
Type
.AsNestedTypeReference is not null)
731
var type = (NamedTypeSymbol)exportedType.
Type
.GetInternalSymbol();