4 implementations of GetUnit
Microsoft.CodeAnalysis (4)
CodeGen\PrivateImplementationDetails.cs (1)
444public Cci.IUnitReference GetUnit(EmitContext context)
Emit\ErrorType.cs (1)
29Cci.IUnitReference Cci.INamespaceTypeReference.GetUnit(EmitContext context)
Emit\NoPia\CommonEmbeddedType.cs (1)
697Cci.IUnitReference Cci.INamespaceTypeReference.GetUnit(EmitContext context)
PEWriter\RootModuleType.cs (1)
246IUnitReference INamespaceTypeReference.GetUnit(EmitContext context)
6 references to GetUnit
Microsoft.CodeAnalysis (6)
PEWriter\MetadataWriter.cs (4)
660return namespaceTypeReference.GetUnit(context); 894IUnitReference uref = namespaceRef.GetUnit(Context); 2862resolutionScope = this.GetResolutionScopeHandle(namespaceTypeRef.GetUnit(Context)); 3748if (namespaceType?.GetUnit(context) is IAssemblyReference referencedAssembly)
PEWriter\ReferenceIndexerBase.cs (1)
207var unit = namespaceTypeReference.GetUnit(Context);
PEWriter\TypeNameSerializer.cs (1)
191referencedAssembly = namespaceType.GetUnit(context) as IAssemblyReference;