diff options
Diffstat (limited to 'deps/v8/src/regexp.js')
-rw-r--r-- | deps/v8/src/regexp.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/regexp.js b/deps/v8/src/regexp.js index a7f42d59c2..38d4496153 100644 --- a/deps/v8/src/regexp.js +++ b/deps/v8/src/regexp.js @@ -405,7 +405,8 @@ var lastMatchInfoOverride = null; // ------------------------------------------------------------------- -function SetupRegExp() { +function SetUpRegExp() { + %CheckIsBootstrapping(); %FunctionSetInstanceClassName($RegExp, 'RegExp'); %FunctionSetPrototype($RegExp, new $Object()); %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM); @@ -484,5 +485,4 @@ function SetupRegExp() { } } - -SetupRegExp(); +SetUpRegExp(); |