commit | 5ced12c154a88058ce5b83ccbaaefb0e8edd6ef2 | [log] [tgz] |
---|---|---|
author | chunyang.dai <chunyang.dai@intel.com> | Thu Sep 24 03:51:55 2015 |
committer | Commit bot <commit-bot@chromium.org> | Thu Sep 24 03:52:04 2015 |
tree | bf1d56f719de2ff3d83697da2c070f868d97ada7 | |
parent | b785daa704fbf5fc9a63451003722082b0928959 [diff] |
X87: [builtins] Add support for NewTarget to Execution::New. port 1dfac69f1fb5ad8e2db2d5be591c094def55d451 (r30857). original commit message: Introduce new builtins Construct and ConstructFunction (in line with the Call and CallFunction builtins that we already have) as proper bottleneck for Construct and [[Construct]] on JSFunctions. Use these builtins to support passing NewTarget from C++ to JavaScript land. Long-term we want the CallConstructStub to be used for gathering feedback on entry to construction chain (i.e. the initial new Foo), and use the Construct builtins to do the actual work inside the construction chain (i.e. calling into super and stuff). BUG= Review URL: https://codereview.chromium.org/1362573002 Cr-Commit-Position: refs/heads/master@{#30899}
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/*
Please follow the instructions mentioned on the V8 wiki.