commit | 222b70d10ff00e67183f1779022e404f1bf9d746 | [log] [tgz] |
---|---|---|
author | rossberg <rossberg@chromium.org> | Tue Aug 04 13:02:59 2015 |
committer | Commit bot <commit-bot@chromium.org> | Tue Aug 04 13:03:53 2015 |
tree | c5b5b0917aa8116317395fb2b8afde685521c89d | |
parent | 117650bb0888716a716feaae0ea5467113633836 [diff] |
Correct handling of temporaries as parameters. They need to be properly recorded in the scope's temps set, otherwise allocation doesn't know about them and can break. (Not observable right now, but necessary for follow-up changes to parameter destructuring.) Also, print temporary variables in a useful manner. R=adamk@chromium.org BUG= Review URL: https://codereview.chromium.org/1263563002 Cr-Commit-Position: refs/heads/master@{#29998}
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/*