Microsoft.JScript.Globals.Globals C# (CSharp) Method

Globals() private method

private Globals ( bool fast, VsaEngine engine ) : Microsoft.JScript.Vsa
fast bool
engine Microsoft.JScript.Vsa.VsaEngine
return Microsoft.JScript.Vsa
      internal Globals(bool fast, VsaEngine engine){
        this.engine = engine;
        this.callContextStack = null;
        this.scopeStack = null;
        this.caller = DBNull.Value;
        this.regExpTable = null;
        if (fast)
          this.globalObject = GlobalObject.commonInstance;
        else
          this.globalObject = new LenientGlobalObject(engine);
      }