commit | a39d101a9c216375e6b251cb878941e57e989b62 | [log] [tgz] |
---|---|---|
author | Simon Zünd <szuend@chromium.org> | Mon May 05 08:36:06 2025 |
committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon May 05 09:25:05 2025 |
tree | f70bf294a7fbe1f6f2033b97dea1ae5c89c48556 | |
parent | 787c9fba1ebcfdda98524bcba7b9cf4a1b81e46b [diff] |
[inspector] Extend 'step-over' test coverage This CL takes two existing tests (step-into.js and for-of-loops.js) and also steps through the examples with 'step-over'. Instead of repeatedly doing a 'step into' until we are done, we now do one 'step into' to get into the test function and then repeatedly 'step-over' until we are done. We want to change for-of loop stepping and having some additional test coverage won't hurt. R=bmeurer@chromium.org Bug: 407773675 Change-Id: Iad393830742e4efb9b04ea1cb855a647ecf2ec2b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6509410 Commit-Queue: Simon Zünd <szuend@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Cr-Commit-Position: refs/heads/main@{#100045}
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.