| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index cb9bdfaf4ef26689ea17361175c719043d9be659..1585ea35bab1b01464cf8d6c5b6931eaff9d78c1 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1671,6 +1671,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_unicode_regexps)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_computed_property_names)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_rest_parameters)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_reflect)
|
| +EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_new_target)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_spreadcalls)
|
|
|
|
|
| @@ -1699,6 +1700,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_computed_property_names)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_new_target)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spreadcalls)
|
|
|
| void Genesis::InitializeGlobal_harmony_regexps() {
|
| @@ -2323,6 +2325,7 @@ bool Genesis::InstallExperimentalNatives() {
|
| static const char* harmony_rest_parameters_natives[] = {NULL};
|
| static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
|
| NULL};
|
| + static const char* harmony_new_target_natives[] = {NULL};
|
| static const char* harmony_spreadcalls_natives[] = {
|
| "native harmony-spread.js", NULL};
|
|
|
|
|