Skip to content

Commit 516b627

Browse files
matthewaveryusaofrobots
authored andcommitted
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 nodejs#9422. Ref: nodejs#9422 PR-URL: nodejs#10525
1 parent 868e5e6 commit 516b627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/v8/src/lookup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class LookupIterator final BASE_EMBEDDED {
179179
Handle<Object> GetReceiver() const { return receiver_; }
180180

181181
Handle<JSObject> GetStoreTarget() const {
182-
DCHECK(receiver->IsJSObject());
182+
DCHECK(receiver_->IsJSObject());
183183
if (receiver_->IsJSGlobalProxy()) {
184184
Map* map = JSGlobalProxy::cast(*receiver_)->map();
185185
if (map->has_hidden_prototype()) {

0 commit comments

Comments
 (0)