| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index fcca1548443ca809bb8685efcebcf77039497e60..c6bc76f7c1efb1e5022a9be19d56dae5d3617ed5 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1755,6 +1755,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_destructuring)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_object)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_spread_arrays)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_sharedarraybuffer)
|
| +EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_default_parameters)
|
|
|
|
|
| void Genesis::InstallNativeFunctions_harmony_proxies() {
|
| @@ -1786,6 +1787,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spreadcalls)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_destructuring)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_spread_arrays)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_default_parameters)
|
|
|
| void Genesis::InitializeGlobal_harmony_regexps() {
|
| Handle<JSObject> builtins(native_context()->builtins());
|
| @@ -2428,6 +2430,7 @@ bool Genesis::InstallExperimentalNatives() {
|
| static const char* harmony_spread_arrays_natives[] = {nullptr};
|
| static const char* harmony_sharedarraybuffer_natives[] = {
|
| "native harmony-sharedarraybuffer.js", NULL};
|
| + static const char* harmony_default_parameters_natives[] = {nullptr};
|
|
|
| for (int i = ExperimentalNatives::GetDebuggerCount();
|
| i < ExperimentalNatives::GetBuiltinsCount(); i++) {
|
|
|