Version 4.2.77.21 (cherry-pick)

Merged 7c347c545e33d279b5aa476e754a5358201be846
Merged 4922412a72ab41f53efcaf0ae24f8f6cc14f1d8a
Merged eda4b5bcd2ef98264feeff3755a678c8a95d2f6c

Ensure object literal element boilerplates aren't modified.

PPC: Ensure object literal element boilerplates aren't modified.

MIPS64: Ensure object literal element boilerplates aren't modified.

BUG=466993
LOG=N
R=yangguo@chromium.org

Review URL: https://codereview.chromium.org/1156323004

Cr-Commit-Position: refs/branch-heads/4.2@{#24}
Cr-Branched-From: 3dfd929ea07487f2295553df397720d8d75d227c-refs/heads/4.2.77@{#2}
Cr-Branched-From: e0110920d6f98f0ba2ac0d680f635ae3f094a04e-refs/heads/master@{#26757}
15 files changed
tree: 85d00ede5a4488b2eb108ba9b3e4787002a90530
  1. benchmarks/
  2. build/
  3. include/
  4. samples/
  5. src/
  6. test/
  7. testing/
  8. third_party/
  9. tools/
  10. .clang-format
  11. .gitignore
  12. .ycm_extra_conf.py
  13. AUTHORS
  14. BUILD.gn
  15. ChangeLog
  16. codereview.settings
  17. DEPS
  18. LICENSE
  19. LICENSE.strongtalk
  20. LICENSE.v8
  21. LICENSE.valgrind
  22. Makefile
  23. Makefile.android
  24. Makefile.nacl
  25. OWNERS
  26. PRESUBMIT.py
  27. README.md
  28. WATCHLISTS
README.md

V8 JavaScript Engine

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/

Getting the Code

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/*