aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/runtime
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-07-08 14:55:53 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2016-07-09 09:13:15 +0200
commit245ac302f59a538309c00bfacca26c858ea31fdc (patch)
treeb891db1605c31f20f7df6d30235ed3f4fd4b4e84 /deps/v8/src/runtime
parentb9b49ee66feeecaa76a1b6bfd3e12e4d590256f9 (diff)
downloadandroid-node-v8-245ac302f59a538309c00bfacca26c858ea31fdc.tar.gz
android-node-v8-245ac302f59a538309c00bfacca26c858ea31fdc.tar.bz2
android-node-v8-245ac302f59a538309c00bfacca26c858ea31fdc.zip
deps: update V8 to 5.1.281.75
Pick up the latest branch-head for V8 5.1. Introduces a semver-minor overload of v8::Function::New() for use by v8_inspector. Refs: https://github.com/nodejs/node/pull/7586 PR-URL: https://github.com/nodejs/node/pull/7615 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/v8/src/runtime')
-rw-r--r--deps/v8/src/runtime/runtime-scopes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/runtime/runtime-scopes.cc b/deps/v8/src/runtime/runtime-scopes.cc
index de0d66a74e..5f3cdf2682 100644
--- a/deps/v8/src/runtime/runtime-scopes.cc
+++ b/deps/v8/src/runtime/runtime-scopes.cc
@@ -648,7 +648,7 @@ RUNTIME_FUNCTION(Runtime_NewRestParameter) {
{
DisallowHeapAllocation no_gc;
FixedArray* elements = FixedArray::cast(result->elements());
- WriteBarrierMode mode = result->GetWriteBarrierMode(no_gc);
+ WriteBarrierMode mode = elements->GetWriteBarrierMode(no_gc);
for (int i = 0; i < num_elements; i++) {
elements->set(i, *arguments[i + start_index], mode);
}