Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index a5cb55525274f6b2c7e68443bc830cce096d6c00..e9bb4eaf64b7524f82b2bc17e2e19d6a82146189 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -1587,8 +1587,6 @@ bool Genesis::InstallNatives() { |
global_context()->set_string_function_prototype_map( |
HeapObject::cast(string_function->initial_map()->prototype())->map()); |
- InstallBuiltinFunctionIds(); |
- |
// Install Function.prototype.call and apply. |
{ Handle<String> key = factory()->function_class_symbol(); |
Handle<JSFunction> function = |
@@ -1622,6 +1620,8 @@ bool Genesis::InstallNatives() { |
apply->shared()->set_length(2); |
} |
+ InstallBuiltinFunctionIds(); |
+ |
// Create a constructor for RegExp results (a variant of Array that |
// predefines the two properties index and match). |
{ |