Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index cd6bb6c41ec2eab6da92f133d6ec7f8999267f2c..a141e0c6cd07e2a01614ae47cdbb0940924e6574 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2363,6 +2363,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_do_expressions) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_iterator_close) |
+EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_exec) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_lookbehind) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_property) |
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_function_name) |
@@ -2942,6 +2943,8 @@ bool Genesis::InstallExperimentalNatives() { |
static const char* harmony_simd_natives[] = {"native harmony-simd.js", |
nullptr}; |
static const char* harmony_do_expressions_natives[] = {nullptr}; |
+ static const char* harmony_regexp_exec_natives[] = { |
+ "native harmony-regexp-exec.js", nullptr}; |
static const char* harmony_regexp_subclass_natives[] = {nullptr}; |
static const char* harmony_regexp_lookbehind_natives[] = {nullptr}; |
static const char* harmony_instanceof_natives[] = {nullptr}; |