Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 363fa8a23cfa2cbb3611eadf615b10286fb204c8..6c4f82d7e2c35f36edd478b97650a91695875f46 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2194,6 +2194,8 @@ void Genesis::InitializeGlobal_harmony_reflect() { |
factory()->NewJSObject(isolate()->object_function(), TENURED); |
JSObject::AddProperty(global, reflect_string, reflect, DONT_ENUM); |
+ SimpleInstallFunction(reflect, "defineProperty", |
+ Builtins::kReflectDefineProperty, 3, true); |
SimpleInstallFunction(reflect, "deleteProperty", |
Builtins::kReflectDeleteProperty, 2, true); |
SimpleInstallFunction(reflect, "get", |