Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index a5cb55525274f6b2c7e68443bc830cce096d6c00..6888ab71b60888d8a32f8ddc0404d896abbd2d59 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -1321,6 +1321,9 @@ void Genesis::InstallNativeFunctions() { |
configure_instance_fun); |
INSTALL_NATIVE(JSFunction, "GetStackTraceLine", get_stack_trace_line_fun); |
INSTALL_NATIVE(JSObject, "functionCache", function_cache); |
+ INSTALL_NATIVE(JSFunction, "ToPropertyDescriptor", to_property_descriptor); |
Kevin Millikin (Chromium)
2011/09/05 13:48:59
Do you need this one?
rossberg
2011/09/05 14:07:49
No, removed.
|
+ INSTALL_NATIVE(JSFunction, "ToCompletePropertyDescriptor", |
+ to_complete_property_descriptor); |
} |
void Genesis::InstallExperimentalNativeFunctions() { |