commit | e80cfa000b5be9ee92b9fd95ebe63cb2da63c553 | [log] [tgz] |
---|---|---|
author | luoe <luoe@chromium.org> | Tue Nov 15 21:57:25 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Nov 15 21:58:50 2016 |
tree | 017984f68ce8c44f33d38a50546385fe08a2f3bb | |
parent | 2f060955e881aad0e6d5124c533403d3b172bb3b [diff] |
Generate inferred names for es6 class functions Inferred names are currently generated for FunctionLiterals but not generated for ClassLiterals. Without them, DevTools does not have enough information to make descriptive descriptions. E.g. var x = {y: class{}}; var a = new x.y(); console.log(a); This shows "Object{}" when it could be more descriptive "x.y {}" BUG=v8:5621 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2488193003 Cr-Commit-Position: refs/heads/master@{#41013}
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.