Microsoft.JScript.Vsa.VsaEngine.EnsureReflectionOnlyModulesLoaded C# (CSharp) Method

EnsureReflectionOnlyModulesLoaded() private method

private EnsureReflectionOnlyModulesLoaded ( ) : void
return void
      internal void EnsureReflectionOnlyModulesLoaded() {
        if (VsaEngine.reflectionOnlyVsaModule == null) {
          VsaEngine.reflectionOnlyVsaModule = Assembly.ReflectionOnlyLoadFrom(typeof(IVsaEngine).Assembly.Location).GetModule("Microsoft.Vsa.dll");
          VsaEngine.reflectionOnlyJScriptModule = Assembly.ReflectionOnlyLoadFrom(typeof(VsaEngine).Assembly.Location).GetModule("Microsoft.JScript.dll");
        }
      }