diff --git a/common.gypi b/common.gypi index 4119517dbbe108..5ea3e365064ffd 100644 --- a/common.gypi +++ b/common.gypi @@ -39,7 +39,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/AUTHORS b/deps/v8/AUTHORS index 1c8424243d5e9e..5a8628b4cb2a77 100644 --- a/deps/v8/AUTHORS +++ b/deps/v8/AUTHORS @@ -15,6 +15,7 @@ NVIDIA Corporation <*@nvidia.com> BlackBerry Limited <*@blackberry.com> Opera Software ASA <*@opera.com> Intel Corporation <*@intel.com> +LG Electronics, Inc. <*@lge.com> Microsoft <*@microsoft.com> MIPS Technologies, Inc. <*@mips.com> Imagination Technologies, LLC <*@imgtec.com> diff --git a/deps/v8/src/objects/js-objects.cc b/deps/v8/src/objects/js-objects.cc index a0dc33909a962d..317837a99fcdcd 100644 --- a/deps/v8/src/objects/js-objects.cc +++ b/deps/v8/src/objects/js-objects.cc @@ -3752,6 +3752,10 @@ void JSObject::ApplyAttributesToDictionary( } } +template void JSObject::ApplyAttributesToDictionary( + Isolate* isolate, ReadOnlyRoots roots, Handle dictionary, + const PropertyAttributes attributes); + template Maybe JSObject::PreventExtensionsWithTransition( Handle object, ShouldThrow should_throw) {