public Runner(IProvideVBScriptCompatFunctionalityToIndividualRequests compatLayer)
 {
     if (compatLayer == null)
     {
         throw new ArgumentNullException("compatLayer");
     }
     _ = compatLayer;
 }
 public GlobalReferences(IProvideVBScriptCompatFunctionalityToIndividualRequests compatLayer, EnvironmentReferences env)
 {
     if (compatLayer == null)
     {
         throw new ArgumentNullException("compatLayer");
     }
     if (env == null)
     {
         throw new ArgumentNullException("env");
     }
     _      = compatLayer;
     _env   = env;
     _outer = this;
     i      = null;
 }