diff options
author | Michaël Zasso <targos@protonmail.com> | 2017-02-14 11:27:26 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2017-02-22 15:55:42 +0100 |
commit | 7a77daf24344db7942e34c962b0f1ee729ab7af5 (patch) | |
tree | e7cbe7bf4e2f4b802a8f5bc18336c546cd6a0d7f /deps/v8/src/keys.cc | |
parent | 5f08871ee93ea739148cc49e0f7679e33c70295a (diff) | |
download | node-new-7a77daf24344db7942e34c962b0f1ee729ab7af5.tar.gz |
deps: update V8 to 5.6.326.55
PR-URL: https://github.com/nodejs/node/pull/10992
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/v8/src/keys.cc')
-rw-r--r-- | deps/v8/src/keys.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/keys.cc b/deps/v8/src/keys.cc index c6e31e3f23..9b6c8f3381 100644 --- a/deps/v8/src/keys.cc +++ b/deps/v8/src/keys.cc @@ -780,7 +780,7 @@ Maybe<bool> KeyAccumulator::CollectOwnJSProxyKeys(Handle<JSReceiver> receiver, target_keys->get(i)); nonconfigurable_keys_length++; // The key was moved, null it out in the original list. - target_keys->set(i, Smi::FromInt(0)); + target_keys->set(i, Smi::kZero); } else { // 14c. Else, // 14c i. Append key as an element of targetConfigurableKeys. @@ -794,7 +794,7 @@ Maybe<bool> KeyAccumulator::CollectOwnJSProxyKeys(Handle<JSReceiver> receiver, return AddKeysFromJSProxy(proxy, trap_result); } // 16. Let uncheckedResultKeys be a new List which is a copy of trapResult. - Zone set_zone(isolate_->allocator()); + Zone set_zone(isolate_->allocator(), ZONE_NAME); const int kPresent = 1; const int kGone = 0; IdentityMap<int> unchecked_result_keys(isolate_->heap(), &set_zone); |