Pchp.CodeAnalysis.Emit.PEModuleBuilder.GetCorLibraryReferencesToEmit C# (CSharp) Méthode

GetCorLibraryReferencesToEmit() private méthode

private GetCorLibraryReferencesToEmit ( Microsoft.CodeAnalysis.Emit.EmitContext context ) : IEnumerable
context Microsoft.CodeAnalysis.Emit.EmitContext
Résultat IEnumerable
        private IEnumerable<Cci.IAssemblyReference> GetCorLibraryReferencesToEmit(EmitContext context)
        {
            Debug.Assert(_compilation.CorLibrary != null);
            Debug.Assert(_compilation.PhpCorLibrary != null);

            yield return Translate(_compilation.CorLibrary, context.Diagnostics);
            yield return Translate(_compilation.PhpCorLibrary, context.Diagnostics);
        }