commit | 8daf19b2c8cf7b9325b53e9b93b1eac878759f23 | [log] [tgz] |
---|---|---|
author | Rubin Xu <rubinxu@google.com> | Tue Nov 24 22:20:56 2020 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Tue Jan 12 04:53:46 2021 +0000 |
tree | 0f75c15b6d2f46b7cdc0ad37b1785fb732f684eb | |
parent | e2247cfb11b05cfe5d9e5a69499dd3182f26e219 [diff] |
[parser] Fix off-by-one in parameter count check Upstream: https://chromium-review.googlesource.com/c/1326029 Bug: 160610106 Test: atest proxy_resolver_v8_unittest Change-Id: I547b1a0cb88094ed79bf6ffe034df7f8834be4d1 (cherry picked from commit 089e85f552ec92402d9fcd19d110b0c7521c4601)
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://github.com/v8/v8/wiki
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 on the V8 wiki.