commit | eccce9b755dd356f012e07db9da281b9d113550e | [log] [tgz] |
---|---|---|
author | bradnelson <bradnelson@google.com> | Thu Dec 17 11:38:28 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Dec 17 11:38:56 2015 |
tree | 4784293d5be7d374a4ab8f07f477f74f95eefc00 | |
parent | 412d4f1a8c97311ddb1914b1e2db917c799d82f1 [diff] |
Fix memory leaks and compiler incompatibilities in wasm unittests. Fixing several memory leaks in wasm unittests. Avoiding std::vector::data() as it isn't supported on all compilers on the bots. Use EXCEPT_TRUE / EXPECT_FALSE to avoid warnings on some compilers when testing boolean equality. R=ahaas@chromium.org BUG= Review URL: https://codereview.chromium.org/1536603003 Cr-Commit-Position: refs/heads/master@{#32940}
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.