5 implementations of GetUnit
Microsoft.CodeAnalysis (4)
CodeGen\PrivateImplementationDetails.cs (1)
552public Cci.IUnitReference GetUnit(EmitContext context)
Emit\ErrorType.cs (1)
30Cci.IUnitReference Cci.INamespaceTypeReference.GetUnit(EmitContext context)
Emit\NoPia\CommonEmbeddedType.cs (1)
698Cci.IUnitReference Cci.INamespaceTypeReference.GetUnit(EmitContext context)
PEWriter\RootModuleType.cs (1)
248IUnitReference INamespaceTypeReference.GetUnit(EmitContext context)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
805Cci.IUnitReference Cci.INamespaceTypeReference.GetUnit(EmitContext context)
6 references to GetUnit
Microsoft.CodeAnalysis (6)
PEWriter\MetadataWriter.cs (4)
663return namespaceTypeReference.GetUnit(context); 897IUnitReference uref = namespaceRef.GetUnit(Context); 2878resolutionScope = this.GetResolutionScopeHandle(namespaceTypeRef.GetUnit(Context)); 3764if (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;