Skip to content

Commit

Permalink
deps: fix compile bug in v8/lookup.h
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
matthewaveryusa authored and MylesBorins committed Jan 24, 2017
1 parent 1a47e5f commit 182e042
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/v8/include/v8-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/src/lookup.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class LookupIterator final BASE_EMBEDDED {
Handle<Object> GetReceiver() const { return receiver_; }

Handle<JSObject> GetStoreTarget() const {
DCHECK(receiver->IsJSObject());
DCHECK(receiver_->IsJSObject());
if (receiver_->IsJSGlobalProxy()) {
Map* map = JSGlobalProxy::cast(*receiver_)->map();
if (map->has_hidden_prototype()) {
Expand Down

0 comments on commit 182e042

Please sign in to comment.