commit | e8752eb9cef68297ff34cf9d87d187d679677f62 | [log] [tgz] |
---|---|---|
author | yangguo <yangguo@chromium.org> | Wed Jul 22 07:37:21 2015 |
committer | Commit bot <commit-bot@chromium.org> | Wed Jul 22 07:37:38 2015 |
tree | 339b43b576b77f3967442e1c36693f663761ef6e | |
parent | 3e3608cdd5073965491db95b1fa085db506d468d [diff] |
Debugger: fix crash when debugger is enabled between parsing and compiling. The background parser checks for debugger state in its constructor. This is not good enough, since the debugger state may change afterwards, but before compiling takes place. As the background parser can only parse lazily, this could mean that due to debugging, we try to eagerly compile an inner function we have not eagerly parsed. R=jochen@chromium.org Review URL: https://codereview.chromium.org/1247743002 Cr-Commit-Position: refs/heads/master@{#29784}
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/*