| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 5fed34927993fb38b850f6de753833bd70b32edc..7d053f3a9aaf6ff92e69f3fca76539551cf307c5 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1582,6 +1582,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_scoping)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_modules)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_strings)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrays)
|
| +EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_array_includes)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_classes)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_object_literals)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_regexps)
|
| @@ -1610,6 +1611,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_scoping)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_strings)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrays)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_array_includes)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_classes)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_literals)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions)
|
| @@ -2160,6 +2162,8 @@ bool Genesis::InstallNatives() {
|
| bool Genesis::InstallExperimentalNatives() {
|
| static const char* harmony_arrays_natives[] = {
|
| "native harmony-array.js", "native harmony-typedarray.js", NULL};
|
| + static const char* harmony_array_includes_natives[] = {
|
| + "native harmony-array-includes.js", NULL};
|
| static const char* harmony_proxies_natives[] = {"native proxy.js", NULL};
|
| static const char* harmony_strings_natives[] = {"native harmony-string.js",
|
| NULL};
|
|
|