| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index e37783087994ecc82439fcbcec1f7661b1e09d06..4b828e6325b86a2c18c3df7b80ff3e26625890e8 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -2072,6 +2072,11 @@ bool Genesis::InstallExperimentalNatives() {
|
| "native generator.js") == 0) {
|
| if (!CompileExperimentalBuiltin(isolate(), i)) return false;
|
| }
|
| + if (FLAG_harmony_iteration &&
|
| + strcmp(ExperimentalNatives::GetScriptName(i).start(),
|
| + "native array-iterator.js") == 0) {
|
| + if (!CompileExperimentalBuiltin(isolate(), i)) return false;
|
| + }
|
| }
|
|
|
| InstallExperimentalNativeFunctions();
|
|
|