commit | 48bd29a7490e491af0a8f079cdb6f78e92779fd2 | [log] [tgz] |
---|---|---|
author | Clemens Backes <clemensb@chromium.org> | Tue Nov 26 12:53:41 2024 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Nov 26 13:28:19 2024 |
tree | 71875c5a5075b796d9f5fd6c75b9d877ed68e9a0 | |
parent | 7e7f77d84cb108b0738b8b57d4908d17ebaa142d [diff] |
[wasm][cleanup] Remove unused constructor of ImportedFunctionEntry The constructor taking a `WasmInstanceObject` is dangerous, because we would need to re-load the pointer to the trusted data. Luckily it's unused, so we can just remove it. R=jkummerow@chromium.org Bug: 336507783 Change-Id: Id8cbe33b88798bfbe20b6c261a9ec9ab33d8b057 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6049263 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#97412}
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.