commit | 058a7ee01e6d1842fe284464fc390de5948ba75b | [log] [tgz] |
---|---|---|
author | jbroman <jbroman@chromium.org> | Wed Aug 17 16:05:57 2016 |
committer | Commit bot <commit-bot@chromium.org> | Wed Aug 17 16:06:12 2016 |
tree | b29e30d92d850933cb233eec49808c57ec01f749 | |
parent | 1c6cb5a40a9d337e44f87393f3e63b985d29c388 [diff] |
Blink-compatible deserialization of old object format. The "version 0" format did not deal with references, and used a stack model to deserialize objects (conceptually, a postorder tree traversal). This requires an explicit stack, so special logic is added to decode this format. All subsequent versions also put an object marker at the beginning, which is equivalent to how the current version serializes. BUG=chromium:148757 Review-Url: https://codereview.chromium.org/2248893003 Cr-Commit-Position: refs/heads/master@{#38686}
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.