commit | 5a65b3b8998172100ccf73f48afdaf20e18ec1d7 | [log] [tgz] |
---|---|---|
author | Andrey Kosyakov <caseq@chromium.org> | Thu Sep 19 00:24:42 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Sep 19 16:09:10 2024 |
tree | 0e920fff9a0677337a1087f7c1c581a229eac964 | |
parent | 375dfc59ba87f85ab29d87d34aabcd09b4de2c5a [diff] |
Do not skip holes in FastIterateArray() ... we don't skip holes on the slow path [1], and the fast path should not be semantically different. [1] https://source.chromium.org/chromium/chromium/src/+/main:v8/src/api/api.cc;l=8405 Bug: chrome:367755353 Change-Id: I71b0d051590d73f28bfa18e26af6bdbed162e7ca Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5875162 Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/main@{#96190}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8
and fetch all of its dependencies. To stay up to date, run
git pull origin gclient sync
For fetching all branches, add the following into your remote configuration in .git/config
:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* fetch = +refs/tags/*:refs/tags/*
Please follow the instructions mentioned at v8.dev/docs/contribute.