commit | 7776370c587e59012613b4d468f0de7ad0d25a8a | [log] [tgz] |
---|---|---|
author | littledan <littledan@chromium.org> | Thu Sep 15 01:16:12 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Sep 15 01:16:45 2016 |
tree | 5a3358c186b6f21d17967632fea5fe52f6dcfec6 | |
parent | 4b8f6543f497094ee33d8f9d7ae0b5a46f22c23f [diff] |
Async/await catch prediction for "the synchronous case" Handle the "synchronous case" by marking try/catch blocks introduced for async functions as ASYNC_AWAIT and traversing up the stack, finding successive Promises and returning caught if any of them are predicted to be caught. BUG=v8:5167 Review-Url: https://codereview.chromium.org/2325813002 Cr-Commit-Position: refs/heads/master@{#39433}
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.