Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 3650d9405290feab4c5237afa457891efc1c7d45..f13a3dab4e61965be20639c61cc82dc264dbb00c 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) |
@@ -1611,6 +1612,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) |
@@ -2154,6 +2156,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}; |