| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 626037c commit 7b929df
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ | |||
| 11 | 11 | #define V8_MAJOR_VERSION 12 | |
| 12 | 12 | #define V8_MINOR_VERSION 4 | |
| 13 | 13 | #define V8_BUILD_NUMBER 254 | |
| 14 | - #define V8_PATCH_LEVEL 17 | ||
| 14 | + #define V8_PATCH_LEVEL 18 | ||
| 15 | 15 | ||
| 16 | 16 | // Use 1 for candidates and 0 otherwise. | |
| 17 | 17 | // (Boolean macro values are not supported by all preprocessors.) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -51,7 +51,7 @@ inline bool HasOnlySimpleElements(Isolate* isolate, | |||
| 51 | 51 | DisallowGarbageCollection no_gc; | |
| 52 | 52 | PrototypeIterator iter(isolate, receiver, kStartAtReceiver); | |
| 53 | 53 | for (; !iter.IsAtEnd(); iter.Advance()) { | |
| 54 | - if (IsJSProxy(iter.GetCurrent())) return false; | ||
| 54 | + if (!IsJSObject(iter.GetCurrent())) return false; | ||
| 55 | 55 | Tagged<JSObject> current = iter.GetCurrent<JSObject>(); | |
| 56 | 56 | if (!HasSimpleElements(current)) return false; | |
| 57 | 57 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments