1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 
6 using System;
7 using Internal.Runtime.TypeLoader;
8 
9 namespace Internal.TypeSystem.Ecma
10 {
11     public partial class EcmaModule
12     {
13         public EcmaModuleInfo RuntimeModuleInfo { get; private set; }
14 
SetRuntimeModuleInfoUNSAFE(EcmaModuleInfo moduleInfo)15         public void SetRuntimeModuleInfoUNSAFE(EcmaModuleInfo moduleInfo) { RuntimeModuleInfo = moduleInfo; }
16     }
17 }
18