commit | 32b2d7c8148683da6c04a5e35172b430fa82428a | [log] [tgz] |
---|---|---|
author | jgruber <jgruber@chromium.org> | Wed Oct 12 07:36:51 2016 |
committer | Commit bot <commit-bot@chromium.org> | Wed Oct 12 07:37:04 2016 |
tree | 5ecb59f56e852df5cf649314b3220b178c2a9112 | |
parent | a8e4faf4ee205b38da975a7307ac6b084fb9e01f [diff] |
[i18n] Avoid name conflicts caused by minifier Our minifier (tools/jsmin.py) shortens variable names it comes across. It generally tries to avoid name conflicts caused by renamed variables, but cannot handle lambda function syntax. This is what happens here. Both lambda function parameters 'x' and 'y' are not recognized as identifiers by the minifier and it thus potentially causes naming conflicts. BUG=v8:5505 Review-Url: https://codereview.chromium.org/2412533002 Cr-Commit-Position: refs/heads/master@{#40198}
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.