Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: src/bootstrapper.cc

Issue 1550713002: Guard the property RegExp.prototype.unicode behind --harmony-regexp-unicode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Test262 expectations Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | src/js/harmony-regexp.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index 34494122096da30dfc5919d15e74e71547e42136..83d265e9421a8d357e81e8b91e63ceeece4efbd0 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -2662,7 +2662,8 @@ bool Genesis::InstallExperimentalNatives() {
static const char* harmony_sloppy_natives[] = {nullptr};
static const char* harmony_sloppy_function_natives[] = {nullptr};
static const char* harmony_sloppy_let_natives[] = {nullptr};
- static const char* harmony_unicode_regexps_natives[] = {nullptr};
+ static const char* harmony_unicode_regexps_natives[] = {
+ "native harmony-unicode-regexps.js", nullptr};
static const char* harmony_default_parameters_natives[] = {nullptr};
static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
nullptr};
« no previous file with comments | « BUILD.gn ('k') | src/js/harmony-regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698