From 516b627f7cdbe2f5252c8e584c3dc7c54b1c8af4 Mon Sep 17 00:00:00 2001 From: Matthew Avery Date: Thu, 29 Dec 2016 16:01:10 -0500 Subject: [PATCH 1/2] deps: fix compile bug in v8/lookup.h Fixed a small error that manifests when --debug is specified. This seems to have been introduced during the backport #9422. Ref: https://github.com/nodejs/node/pull/9422 PR-URL: https://github.com/nodejs/node/pull/10525 --- deps/v8/src/lookup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/v8/src/lookup.h b/deps/v8/src/lookup.h index 3fbd9b41002f92..961303c64f18cc 100644 --- a/deps/v8/src/lookup.h +++ b/deps/v8/src/lookup.h @@ -179,7 +179,7 @@ class LookupIterator final BASE_EMBEDDED { Handle GetReceiver() const { return receiver_; } Handle GetStoreTarget() const { - DCHECK(receiver->IsJSObject()); + DCHECK(receiver_->IsJSObject()); if (receiver_->IsJSGlobalProxy()) { Map* map = JSGlobalProxy::cast(*receiver_)->map(); if (map->has_hidden_prototype()) { From e74def5e5fd822aa84f3ef31221e8322c3246a6c Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Thu, 29 Dec 2016 14:07:27 -0800 Subject: [PATCH 2/2] [SQUASH] bump v8 version --- deps/v8/include/v8-version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h index fb83ab5c6ca287..35984a97ad2e8a 100644 --- a/deps/v8/include/v8-version.h +++ b/deps/v8/include/v8-version.h @@ -11,7 +11,7 @@ #define V8_MAJOR_VERSION 5 #define V8_MINOR_VERSION 1 #define V8_BUILD_NUMBER 281 -#define V8_PATCH_LEVEL 89 +#define V8_PATCH_LEVEL 90 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.)