internal RegExpConstructor(LenientFunctionPrototype parent, LenientRegExpPrototype prototypeProp, LenientArrayPrototype arrayPrototype) : base(parent, "RegExp", 2)
 {
     this.originalPrototype = prototypeProp;
     prototypeProp.constructor = this;
     base.proto = prototypeProp;
     this.arrayPrototype = arrayPrototype;
     this.regex = null;
     this.lastRegexMatch = null;
     this.inputString = "";
     this.lastInput = null;
     base.noExpando = false;
 }
 internal RegExpConstructor(LenientFunctionPrototype parent, LenientRegExpPrototype prototypeProp, LenientArrayPrototype arrayPrototype) : base(parent, "RegExp", 2)
 {
     this.originalPrototype    = prototypeProp;
     prototypeProp.constructor = this;
     base.proto          = prototypeProp;
     this.arrayPrototype = arrayPrototype;
     this.regex          = null;
     this.lastRegexMatch = null;
     this.inputString    = "";
     this.lastInput      = null;
     base.noExpando      = false;
 }