commit | d0a9fddfb9f5847b055b5bc755a5d2f94ad34fad | [log] [tgz] |
---|---|---|
author | Joyee Cheung <joyee@igalia.com> | Fri Mar 07 13:12:14 2025 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Mar 07 17:08:28 2025 |
tree | a5c06e967f94729240b7ec7f1e623ef54081a84f | |
parent | 55d30f868f07fcc43cd297e0fd047d22dc06e606 [diff] |
[runtime] handle more invalid receivers in Set/GetPrivateMember Previously these assume that non null or undefined receivers are JSReceiver which would lead a crash when being used on other types. Change-Id: I99a1642b59ae145f433c62d04912791a9d2de03c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6333622 Commit-Queue: Joyee Cheung <joyee@igalia.com> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#99129}
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.