diff --git a/common.gypi b/common.gypi index 7796ec5763f437..9c603e8963211a 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.10', + 'v8_embedder_string': '-node.11', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/src/flags/flag-definitions.h b/deps/v8/src/flags/flag-definitions.h index e169e5707d1e3a..6acb97299e0026 100644 --- a/deps/v8/src/flags/flag-definitions.h +++ b/deps/v8/src/flags/flag-definitions.h @@ -278,7 +278,8 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") // Features that are complete (but still behind the --harmony flag). #define HARMONY_STAGED_BASE(V) \ - V(harmony_set_methods, "harmony Set Methods") + V(harmony_set_methods, "harmony Set Methods") \ + V(harmony_iterator_helpers, "JavaScript iterator helpers") #define JAVASCRIPT_STAGED_FEATURES_BASE(V) \ V(js_promise_withresolvers, "Promise.withResolvers") @@ -303,8 +304,7 @@ DEFINE_WEAK_IMPLICATION(harmony_rab_gsab_transfer, harmony_rab_gsab) V(harmony_regexp_unicode_sets, "harmony RegExp Unicode Sets") \ V(harmony_json_parse_with_source, "harmony json parse with source") \ V(harmony_rab_gsab_transfer, "harmony ArrayBuffer.transfer") \ - V(harmony_array_grouping, "harmony array grouping") \ - V(harmony_iterator_helpers, "JavaScript iterator helpers") + V(harmony_array_grouping, "harmony array grouping") #define JAVASCRIPT_SHIPPING_FEATURES_BASE(V) diff --git a/deps/v8/test/mjsunit/es6/iterator-prototype.js b/deps/v8/test/mjsunit/es6/iterator-prototype.js index 82277d98170250..496b67de122aa6 100644 --- a/deps/v8/test/mjsunit/es6/iterator-prototype.js +++ b/deps/v8/test/mjsunit/es6/iterator-prototype.js @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +// Flags: --harmony-iterator-helpers + var arrayIteratorPrototype = [].entries().__proto__; var iteratorPrototype = arrayIteratorPrototype.__proto__; diff --git a/deps/v8/test/mozilla/mozilla.status b/deps/v8/test/mozilla/mozilla.status index 724252d34e0c0b..aacb4e22335237 100644 --- a/deps/v8/test/mozilla/mozilla.status +++ b/deps/v8/test/mozilla/mozilla.status @@ -546,6 +546,7 @@ # Uses Mozilla-specific QName, XML, XMLList and Iterator. 'js1_5/Regress/regress-407323': [FAIL_OK], + 'js1_5/Regress/regress-407957': [FAIL_OK], # Relies on JavaScript 1.2 / 1.3 deprecated features.