0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Myles Borins 81232320aa
deps: patch V8 to 6.4.388.46
PR-URL: https://github.com/nodejs/node/pull/18827
Refs: https://github.com/v8/v8/compare/6.4.388.45...6.4.388.46
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2018-02-17 15:19:52 +01:00
..
base/trace_event/common deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
benchmarks deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
build_overrides deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
docs
gni deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
gypfiles deps: patch V8 to 6.4.388.45 2018-02-16 19:35:11 +01:00
include deps: patch V8 to 6.4.388.46 2018-02-17 15:19:52 +01:00
infra deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
samples deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
src deps: patch V8 to 6.4.388.46 2018-02-17 15:19:52 +01:00
test deps: patch V8 to 6.4.388.44 2018-02-13 01:22:19 -05:00
testing
third_party deps: V8: resolve remaining whitespace diff 2018-01-30 16:54:49 -08:00
tools deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
.clang-format
.editorconfig deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
.git-blame-ignore-revs deps: update V8 to 6.3.292.46 2017-12-06 12:52:07 +01:00
.gitignore deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
.gn
.vpython deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
.ycm_extra_conf.py deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
AUTHORS deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
BUILD.gn deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
ChangeLog deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
CODE_OF_CONDUCT.md
codereview.settings deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
DEPS deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile deps: patch V8 to 6.2.414.44 2017-11-13 12:30:40 -05:00
Makefile.android
OWNERS deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
PRESUBMIT.py deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
README.md
snapshot_toolchain.gni deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
WATCHLISTS

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.