From fdc373d639075b0b888f185df8b8f66fa79bf67c Mon Sep 17 00:00:00 2001 From: Matthew Avery Date: Thu, 29 Dec 2016 16:01:10 -0500 Subject: [PATCH] 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 Reviewed-By: ofrobots - Ali Ijaz Sheikh Reviewed-By: mhdawson - Michael Dawson --- deps/v8/include/v8-version.h | 2 +- deps/v8/src/lookup.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.) 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()) {