Skip to content

Commit 182e042

Browse files
matthewaveryusaMylesBorins
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 #9422. Ref: #9422 PR-URL: #10525 Reviewed-By: ofrobots - Ali Ijaz Sheikh <[email protected]> Reviewed-By: mhdawson - Michael Dawson <[email protected]>
1 parent 1a47e5f commit 182e042

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/v8/include/v8-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 5
1212
#define V8_MINOR_VERSION 1
1313
#define V8_BUILD_NUMBER 281
14-
#define V8_PATCH_LEVEL 89
14+
#define V8_PATCH_LEVEL 90
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

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)