commit | 1da951ad0bd1a3c2247863060b87adeaef68fbd8 | [log] [tgz] |
---|---|---|
author | Hitoshi Yoshida <peria@chromium.org> | Wed Apr 19 03:26:11 2017 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Apr 19 09:51:22 2017 |
tree | 005372a776af1336660dac54d4582bd025307771 | |
parent | 2a2a417b06fe1299cbc43ac2746414e0f2e7da89 [diff] |
Create a new API Object::SetNativeDataProperty This new API sets a native data property on an object directly, as Template::SetNativeDataProperty does. It is similar to Object::SetAccessor, but properties set by SetNativeDataProperty without kReadOnly flag can be replaced. Bug:chromium:617892 Change-Id: I32973f7190906d76be6802da9a0489edce0bd93e Reviewed-on: https://chromium-review.googlesource.com/479474 Reviewed-by: Jochen Eisinger <jochen@chromium.org> Commit-Queue: Hitoshi Yoshida <peria@chromium.org> Cr-Commit-Position: refs/heads/master@{#44716}
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.