Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index dd3e94b7a07afc1864e866a8591922afb472e68c..249b31c9f1488a514f41bf6f83425ecf1be1f53c 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(); |