// ECMA 15.10.3 static JSValuePtr callRegExpConstructor(ExecState* exec, JSObject*, JSValuePtr, const ArgList& args) { return constructRegExp(exec, args); }
// ECMA 15.10.3 static EncodedJSValue JSC_HOST_CALL callRegExpConstructor(ExecState* exec) { ArgList args(exec); return JSValue::encode(constructRegExp(exec, asInternalFunction(exec->callee())->globalObject(), args)); }
static JSObject* constructWithRegExpConstructor(ExecState* exec, JSObject*, const ArgList& args) { return constructRegExp(exec, args); }
// ECMA 15.10.3 static JSValue JSC_HOST_CALL callRegExpConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args) { return constructRegExp(exec, args); }