commit | 3dcb5171e9ba5d9f8f6f776f08c41463f1c00ae9 | [log] [tgz] |
---|---|---|
author | yangguo <yangguo@chromium.org> | Thu Jul 09 07:05:28 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Jul 09 07:05:47 2015 |
tree | c03ce2f31523867830ef766a783491722102494e | |
parent | a415f594585cb16cd1b4067cab905ddab61c6e5b [diff] |
Debugger: do not compile IC for accessors when debugging. The invariant is that as long as there is a debug info on the shared function info, no accessor IC is compiled for its code. That way we can guarantee that stepping into accessors, which requires a debug info, works for accessors. Review URL: https://codereview.chromium.org/1220283009 Cr-Commit-Position: refs/heads/master@{#29546}
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/*