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

GetAssembly() private method

private GetAssembly ( ) : Assembly
return System.Reflection.Assembly
      public Assembly GetAssembly(){
        this.TryObtainLock();
        try{
          if (null != this.PEFileName)
            return Assembly.LoadFrom(this.PEFileName);
          else
            return compilerGlobals.assemblyBuilder;
        }finally{
          this.ReleaseLock();
        }
      }