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

Unified Diff: src/bootstrapper.cc

Issue 1065983005: Introduce "expression classifier" to the parser. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Added operator== and operator!= to Scanner::Location Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/flag-definitions.h » ('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 cb9bdfaf4ef26689ea17361175c719043d9be659..1a5bfcf6702868209ab5f91b4629b5522c79d2b4 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1672,6 +1672,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_computed_property_names)
EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_rest_parameters)
EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_reflect)
EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_spreadcalls)
+EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_destructuring)
void Genesis::InstallNativeFunctions_harmony_proxies() {
@@ -1700,6 +1701,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode)
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_computed_property_names)
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_rest_parameters)
EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spreadcalls)
+EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring)
void Genesis::InitializeGlobal_harmony_regexps() {
Handle<JSObject> builtins(native_context()->builtins());
@@ -2304,27 +2306,28 @@ bool Genesis::InstallNatives() {
bool Genesis::InstallExperimentalNatives() {
static const char* harmony_arrays_natives[] = {
- "native harmony-array.js", "native harmony-typedarray.js", NULL};
+ "native harmony-array.js", "native harmony-typedarray.js", nullptr};
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_classes_natives[] = {NULL};
- static const char* harmony_modules_natives[] = {NULL};
- static const char* harmony_object_literals_natives[] = {NULL};
- static const char* harmony_regexps_natives[] = {
- "native harmony-regexp.js", NULL};
- static const char* harmony_arrow_functions_natives[] = {NULL};
+ "native harmony-array-includes.js", nullptr};
+ static const char* harmony_proxies_natives[] = {"native proxy.js", nullptr};
+ static const char* harmony_classes_natives[] = {nullptr};
+ static const char* harmony_modules_natives[] = {nullptr};
+ static const char* harmony_object_literals_natives[] = {nullptr};
+ static const char* harmony_regexps_natives[] = {"native harmony-regexp.js",
+ nullptr};
+ static const char* harmony_arrow_functions_natives[] = {nullptr};
static const char* harmony_tostring_natives[] = {"native harmony-tostring.js",
- NULL};
- static const char* harmony_sloppy_natives[] = {NULL};
- static const char* harmony_unicode_natives[] = {NULL};
- static const char* harmony_unicode_regexps_natives[] = {NULL};
- static const char* harmony_computed_property_names_natives[] = {NULL};
- static const char* harmony_rest_parameters_natives[] = {NULL};
+ nullptr};
+ static const char* harmony_sloppy_natives[] = {nullptr};
+ static const char* harmony_unicode_natives[] = {nullptr};
+ static const char* harmony_unicode_regexps_natives[] = {nullptr};
+ static const char* harmony_computed_property_names_natives[] = {nullptr};
+ static const char* harmony_rest_parameters_natives[] = {nullptr};
static const char* harmony_reflect_natives[] = {"native harmony-reflect.js",
- NULL};
+ nullptr};
static const char* harmony_spreadcalls_natives[] = {
- "native harmony-spread.js", NULL};
+ "native harmony-spread.js", nullptr};
+ static const char* harmony_destructuring_natives[] = {nullptr};
for (int i = ExperimentalNatives::GetDebuggerCount();
i < ExperimentalNatives::GetBuiltinsCount(); i++) {
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698