node/deps/v8
Michaël Zasso 135b79a31d deps: patch V8 to 7.4.288.18
Refs: https://github.com/v8/v8/compare/7.4.288.17...7.4.288.18

PR-URL: https://github.com/nodejs/node/pull/27066
Refs: https://github.com/v8/v8/compare/7.4.288.13...7.4.288.17
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2019-04-05 08:46:05 -04:00
..
base/trace_event/common deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
benchmarks deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
build_overrides
custom_deps deps: update V8 to 6.9.427.22 2018-09-07 20:59:13 +02:00
docs
gni deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
include deps: patch V8 to 7.4.288.18 2019-04-05 08:46:05 -04:00
infra deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
samples deps: update V8 to 6.9.427.22 2018-09-07 20:59:13 +02:00
src deps: patch V8 to 7.4.288.18 2019-04-05 08:46:05 -04:00
test deps: patch V8 to 7.4.288.18 2019-04-05 08:46:05 -04:00
testing
third_party deps: patch V8 to 7.4.288.17 2019-04-05 08:45:59 -04:00
tools deps: update postmortem metadata generation script 2019-03-28 16:38:36 -04:00
.clang-format
.clang-tidy deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
.editorconfig
.git-blame-ignore-revs
.gitattributes deps: update V8 to 7.1.302.28 2018-12-06 15:23:33 +01:00
.gitignore deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
.gn
.vpython deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
.ycm_extra_conf.py
AUTHORS deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
BUILD.gn deps: V8: cherry-pick 6 commits 2019-03-28 16:38:20 -04:00
CODE_OF_CONDUCT.md
ChangeLog deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
DEPS deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
PRESUBMIT.py deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
README.md
WATCHLISTS
codereview.settings
snapshot_toolchain.gni deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00

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://github.com/v8/v8/wiki

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

Contributing

Please follow the instructions mentioned on the V8 wiki.