From 516b627f7cdbe2f5252c8e584c3dc7c54b1c8af4 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 --- 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()) {