| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index a263fbce91b561cf2edf1c00375a5e7c6d8cd53a..073e98bc67a8c86987efb6b7febb7ee2b540541d 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -2098,22 +2098,22 @@ void Genesis::InitializeGlobal_harmony_reflect() {
|
| Builtins::kReflectDefineProperty, 3, true);
|
| SimpleInstallFunction(reflect, factory->deleteProperty_string(),
|
| Builtins::kReflectDeleteProperty, 2, true);
|
| - SimpleInstallFunction(reflect, factory->get_string(),
|
| - Builtins::kReflectGet, 3, false);
|
| + SimpleInstallFunction(reflect, factory->get_string(), Builtins::kReflectGet,
|
| + 3, false);
|
| SimpleInstallFunction(reflect, factory->getOwnPropertyDescriptor_string(),
|
| Builtins::kReflectGetOwnPropertyDescriptor, 2, true);
|
| SimpleInstallFunction(reflect, factory->getPrototypeOf_string(),
|
| Builtins::kReflectGetPrototypeOf, 1, true);
|
| - SimpleInstallFunction(reflect, factory->has_string(),
|
| - Builtins::kReflectHas, 2, true);
|
| + SimpleInstallFunction(reflect, factory->has_string(), Builtins::kReflectHas,
|
| + 2, true);
|
| SimpleInstallFunction(reflect, factory->isExtensible_string(),
|
| Builtins::kReflectIsExtensible, 1, true);
|
| SimpleInstallFunction(reflect, factory->ownKeys_string(),
|
| Builtins::kReflectOwnKeys, 1, true);
|
| SimpleInstallFunction(reflect, factory->preventExtensions_string(),
|
| Builtins::kReflectPreventExtensions, 1, true);
|
| - SimpleInstallFunction(reflect, factory->set_string(),
|
| - Builtins::kReflectSet, 3, false);
|
| + SimpleInstallFunction(reflect, factory->set_string(), Builtins::kReflectSet,
|
| + 3, false);
|
| SimpleInstallFunction(reflect, factory->setPrototypeOf_string(),
|
| Builtins::kReflectSetPrototypeOf, 2, true);
|
| }
|
|
|