commit | df7e09da19e39fe9047cb9a02c427aa3f8915916 | [log] [tgz] |
---|---|---|
author | mvstanton <mvstanton@chromium.org> | Thu Apr 23 16:09:09 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Apr 23 16:08:51 2015 |
tree | 07916c6e22493be55c2e2e0e6388cd204b731465 | |
parent | ddd3f318c7f3f04ceb151430bdd67cf634224aab [diff] |
Empty Array prototype elements protection needs to alert on length change. If the length of the array prototype is changed, be sure to turn off the guarantee that it's elements are empty. This case was missed in https://codereview.chromium.org/1092043002 ("Protect the emptiness of Array prototype elements with a PropertyCell") R=jkummerow@chromium.org BUG=479781 LOG=N Review URL: https://codereview.chromium.org/1099453007 Cr-Commit-Position: refs/heads/master@{#28033}
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://code.google.com/p/v8/
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/*