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

Side by Side 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 4 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | src/js/harmony-regexp.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/bootstrapper.h" 5 #include "src/bootstrapper.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/extensions/externalize-string-extension.h" 10 #include "src/extensions/externalize-string-extension.h"
(...skipping 2644 matching lines...) Expand 10 before | Expand all | Expand 10 after
2655 2655
2656 bool Genesis::InstallExperimentalNatives() { 2656 bool Genesis::InstallExperimentalNatives() {
2657 static const char* harmony_proxies_natives[] = {"native proxy.js", nullptr}; 2657 static const char* harmony_proxies_natives[] = {"native proxy.js", nullptr};
2658 static const char* harmony_modules_natives[] = {nullptr}; 2658 static const char* harmony_modules_natives[] = {nullptr};
2659 static const char* harmony_regexps_natives[] = {"native harmony-regexp.js", 2659 static const char* harmony_regexps_natives[] = {"native harmony-regexp.js",
2660 nullptr}; 2660 nullptr};
2661 static const char* harmony_tostring_natives[] = {nullptr}; 2661 static const char* harmony_tostring_natives[] = {nullptr};
2662 static const char* harmony_sloppy_natives[] = {nullptr}; 2662 static const char* harmony_sloppy_natives[] = {nullptr};
2663 static const char* harmony_sloppy_function_natives[] = {nullptr}; 2663 static const char* harmony_sloppy_function_natives[] = {nullptr};
2664 static const char* harmony_sloppy_let_natives[] = {nullptr}; 2664 static const char* harmony_sloppy_let_natives[] = {nullptr};
2665 static const char* harmony_unicode_regexps_natives[] = {nullptr}; 2665 static const char* harmony_unicode_regexps_natives[] = {
2666 "native harmony-unicode-regexps.js", nullptr};
2666 static const char* harmony_default_parameters_natives[] = {nullptr}; 2667 static const char* harmony_default_parameters_natives[] = {nullptr};
2667 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js", 2668 static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
2668 nullptr}; 2669 nullptr};
2669 static const char* harmony_destructuring_bind_natives[] = {nullptr}; 2670 static const char* harmony_destructuring_bind_natives[] = {nullptr};
2670 static const char* harmony_destructuring_assignment_natives[] = {nullptr}; 2671 static const char* harmony_destructuring_assignment_natives[] = {nullptr};
2671 static const char* harmony_object_observe_natives[] = { 2672 static const char* harmony_object_observe_natives[] = {
2672 "native harmony-object-observe.js", nullptr}; 2673 "native harmony-object-observe.js", nullptr};
2673 static const char* harmony_sharedarraybuffer_natives[] = { 2674 static const char* harmony_sharedarraybuffer_natives[] = {
2674 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; 2675 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL};
2675 static const char* harmony_concat_spreadable_natives[] = {nullptr}; 2676 static const char* harmony_concat_spreadable_natives[] = {nullptr};
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
3353 } 3354 }
3354 3355
3355 3356
3356 // Called when the top-level V8 mutex is destroyed. 3357 // Called when the top-level V8 mutex is destroyed.
3357 void Bootstrapper::FreeThreadResources() { 3358 void Bootstrapper::FreeThreadResources() {
3358 DCHECK(!IsActive()); 3359 DCHECK(!IsActive());
3359 } 3360 }
3360 3361
3361 } // namespace internal 3362 } // namespace internal
3362 } // namespace v8 3363 } // namespace v8
OLDNEW
« 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