| Index: src/bootstrapper.cc
 | 
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
 | 
| index cec7e9e7d21f83a5bb664b4809f711d9a4d00cb4..9eca9e8dddd2a057b446046875468a9503d1f1be 100644
 | 
| --- a/src/bootstrapper.cc
 | 
| +++ b/src/bootstrapper.cc
 | 
| @@ -1564,14 +1564,14 @@
 | 
|    HandleScope scope(isolate());
 | 
|    INSTALL_NATIVE(JSFunction, "$createDate", create_date_fun);
 | 
|  
 | 
| -  INSTALL_NATIVE(JSFunction, "ToNumber", to_number_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToString", to_string_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toNumber", to_number_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toString", to_string_fun);
 | 
|    INSTALL_NATIVE(JSFunction, "$toDetailString", to_detail_string_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToObject", to_object_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToInteger", to_integer_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToUint32", to_uint32_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToInt32", to_int32_fun);
 | 
| -  INSTALL_NATIVE(JSFunction, "ToLength", to_length_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toObject", to_object_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toInteger", to_integer_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toUint32", to_uint32_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toInt32", to_int32_fun);
 | 
| +  INSTALL_NATIVE(JSFunction, "$toLength", to_length_fun);
 | 
|  
 | 
|    INSTALL_NATIVE(JSFunction, "$globalEval", global_eval_fun);
 | 
|    INSTALL_NATIVE(JSFunction, "$getStackTraceLine", get_stack_trace_line_fun);
 | 
| 
 |