commit | 03dded9955d9665822d8e1c5906fabbc03282eb4 | [log] [tgz] |
---|---|---|
author | Toon Verwaest <verwaest@chromium.org> | Fri Jul 12 13:19:31 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Jul 12 14:02:13 2024 |
tree | 82cdb5881374b95aba06d1d1e51231c5f44ca44c | |
parent | ffada330b4105b98af3b41424bc14ecc510a27e8 [diff] |
[parsing] Allow NewUnresolved to be used for reparsing class initializers This makes NewUnresolved as permissive as AddUnresolved. Class initializers will manually handle resolution of unresolved references that end up in the already resolved class scope. (They end up there because that's where computed property names in class literals are resolved.) Bug: 351865302 Change-Id: I4a9eb8f6af9b792f0f344e2571c60824afe3c649 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5701134 Commit-Queue: Leszek Swirski <leszeks@chromium.org> Auto-Submit: Toon Verwaest <verwaest@chromium.org> Commit-Queue: Toon Verwaest <verwaest@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#95003}
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.