Skip to content

Commit 7b929df

Browse files
nodejs-github-bottargos
authored andcommitted
deps: patch V8 to 12.4.254.18
Refs: v8/v8@12.4.254.17...12.4.254.18 PR-URL: #53054 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
1 parent 626037c commit 7b929df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 12
1212
#define V8_MINOR_VERSION 4
1313
#define V8_BUILD_NUMBER 254
14-
#define V8_PATCH_LEVEL 17
14+
#define V8_PATCH_LEVEL 18
1515

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

deps/v8/src/builtins/builtins-array.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ inline bool HasOnlySimpleElements(Isolate* isolate,
5151
DisallowGarbageCollection no_gc;
5252
PrototypeIterator iter(isolate, receiver, kStartAtReceiver);
5353
for (; !iter.IsAtEnd(); iter.Advance()) {
54-
if (IsJSProxy(iter.GetCurrent())) return false;
54+
if (!IsJSObject(iter.GetCurrent())) return false;
5555
Tagged<JSObject> current = iter.GetCurrent<JSObject>();
5656
if (!HasSimpleElements(current)) return false;
5757
}

0 commit comments

Comments
 (0)