Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index a8d0299095cb621cba2dbd3f2aff37ce51e76071..fa4b92b72bab9b8ecce99f1c1eb0bf174cdcb2f5 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2198,6 +2198,8 @@ void Genesis::InitializeGlobal_harmony_reflect() { |
Builtins::kReflectDeleteProperty, 2, true); |
SimpleInstallFunction(reflect, "get", |
Builtins::kReflectGet, 3, false); |
+ SimpleInstallFunction(reflect, "getOwnPropertyDescriptor", |
+ Builtins::kReflectGetOwnPropertyDescriptor, 2, true); |
SimpleInstallFunction(reflect, "getPrototypeOf", |
Builtins::kReflectGetPrototypeOf, 1, true); |
SimpleInstallFunction(reflect, "has", |