| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 52a772715e2a89df123648152c5f124e525cba5f..936cf40a3b0aa6c8dac298256f86be6a94811e0a 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -2411,6 +2411,7 @@ EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_instanceof)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_restrictive_declarations)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_exponentiation_operator)
|
| EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_string_padding)
|
| +EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_async_await)
|
|
|
| void InstallPublicSymbol(Factory* factory, Handle<Context> native_context,
|
| const char* name, Handle<Symbol> value) {
|
| @@ -2978,6 +2979,7 @@ bool Genesis::InstallExperimentalNatives() {
|
| static const char* harmony_exponentiation_operator_natives[] = {nullptr};
|
| static const char* harmony_string_padding_natives[] = {
|
| "native harmony-string-padding.js", nullptr};
|
| + static const char* harmony_async_await_natives[] = {nullptr};
|
|
|
| for (int i = ExperimentalNatives::GetDebuggerCount();
|
| i < ExperimentalNatives::GetBuiltinsCount(); i++) {
|
|
|