| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 3f9dd3ca3433798a1b86bbb9d2c2e44e2f6b9509..f2d82e80dd0f1afd6854f755fad2de0a6e48d9ee 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1601,6 +1601,7 @@ EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_regexps)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrow_functions)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_numeric_literals)
|
| EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_tostring)
|
| +EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_templates)
|
|
|
|
|
| void Genesis::InstallNativeFunctions_harmony_proxies() {
|
| @@ -1627,6 +1628,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_numeric_literals)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tostring)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_templates)
|
|
|
| void Genesis::InitializeGlobal_harmony_regexps() {
|
| Handle<JSObject> builtins(native_context()->builtins());
|
| @@ -2170,6 +2172,8 @@ bool Genesis::InstallExperimentalNatives() {
|
| static const char* harmony_numeric_literals_natives[] = {NULL};
|
| static const char* harmony_tostring_natives[] = {"native harmony-tostring.js",
|
| NULL};
|
| + static const char* harmony_templates_natives[] = {
|
| + "native harmony-templates.js", NULL};
|
|
|
| for (int i = ExperimentalNatives::GetDebuggerCount();
|
| i < ExperimentalNatives::GetBuiltinsCount(); i++) {
|
|
|