| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 7105eb25e2380a347b93b2e94b6a04d3a79d99c2..d4fc6cd919a7c56af84580b77a99f01cae1fadad 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1596,6 +1596,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_tostring)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_templates)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_sloppy)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_unicode)
|
| +EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_computed_property_names)
|
|
|
|
|
| void Genesis::InstallNativeFunctions_harmony_proxies() {
|
| @@ -1626,6 +1627,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_templates)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_computed_property_names)
|
|
|
| void Genesis::InitializeGlobal_harmony_regexps() {
|
| Handle<JSObject> builtins(native_context()->builtins());
|
| @@ -2180,6 +2182,7 @@ bool Genesis::InstallExperimentalNatives() {
|
| "native harmony-templates.js", NULL};
|
| static const char* harmony_sloppy_natives[] = {NULL};
|
| static const char* harmony_unicode_natives[] = {NULL};
|
| + static const char* harmony_computed_property_names_natives[] = {NULL};
|
|
|
| for (int i = ExperimentalNatives::GetDebuggerCount();
|
| i < ExperimentalNatives::GetBuiltinsCount(); i++) {
|
|
|