commit | 8b306c633676476c295ea49642b0fe1f9b271d8f | [log] [tgz] |
---|---|---|
author | clemensh <clemensh@chromium.org> | Thu Nov 17 15:09:53 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Nov 17 15:10:14 2016 |
tree | a98d2078b4276e0814da89d8b3ad99d46541c9fb | |
parent | 5369874042cc01b0aee933071fe21db363f44c5d [diff] |
[wasm] Refactor interface to WasmCompiledModule The ptr_to_* methods do (often unnecessary) type checks, and can return nullptr. This is problematic since the handlified getter uses them, and assumes the result to be non-null. So change them to only to a DCHECK and never return nullptr, and introduce maybe_ptr_to_* with the old semantics. R=titzer@chromium.org, ahaas@chromium.org Review-Url: https://codereview.chromium.org/2509053003 Cr-Commit-Position: refs/heads/master@{#41079}
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.