Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 484a74e5e2960f60388acb149152bc39a29341a1..7b35506134779f6dd14ea0736034741666d25065 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2197,6 +2197,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", |