| Index: src/regexp.js
|
| diff --git a/src/regexp.js b/src/regexp.js
|
| index 38d4496153909f41d98ada01cd18ee5fa367fe63..a7f42d59c25ef2e5723df1ac70db16ab05aeb13b 100644
|
| --- a/src/regexp.js
|
| +++ b/src/regexp.js
|
| @@ -405,8 +405,7 @@ var lastMatchInfoOverride = null;
|
|
|
| // -------------------------------------------------------------------
|
|
|
| -function SetUpRegExp() {
|
| - %CheckIsBootstrapping();
|
| +function SetupRegExp() {
|
| %FunctionSetInstanceClassName($RegExp, 'RegExp');
|
| %FunctionSetPrototype($RegExp, new $Object());
|
| %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
|
| @@ -485,4 +484,5 @@ function SetUpRegExp() {
|
| }
|
| }
|
|
|
| -SetUpRegExp();
|
| +
|
| +SetupRegExp();
|
|
|