| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 6f37a94ac97e00ce92dec4c64fac04bbbdd849cb..b2281ea12f34329517cfe8062892746e888d2e5c 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1602,6 +1602,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() {
|
| @@ -1628,6 +1629,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());
|
| @@ -2171,6 +2173,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++) {
|
|
|