0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Myles Borins 80f2b67367
deps: patch V8 to 7.8.279.14
Refs: https://github.com/v8/v8/compare/7.8.279.12...7.8.279.14
PR-URL: https://github.com/nodejs/node/pull/29694
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
2019-10-07 03:20:36 -04:00
..
base/trace_event/common deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
benchmarks deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
build_overrides deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
custom_deps deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
docs
gni deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
include deps: patch V8 to 7.8.279.14 2019-10-07 03:20:36 -04:00
infra deps: patch V8 to 7.8.279.12 2019-10-07 03:20:34 -04:00
samples deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
src deps: patch V8 to 7.8.279.14 2019-10-07 03:20:36 -04:00
test deps: patch V8 to 7.8.279.12 2019-10-07 03:20:34 -04:00
testing deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
third_party deps: V8: cherry-pick 35c6d4d 2019-10-07 03:20:17 -04:00
tools deps: update V8's postmortem script 2019-10-07 03:20:22 -04:00
.clang-format
.clang-tidy
.editorconfig
.flake8 deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
.gn deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
.vpython
.ycm_extra_conf.py
AUTHORS deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
BUILD.gn deps: V8: cherry-pick 716875d 2019-10-07 03:20:19 -04:00
ChangeLog deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS deps: update V8 to 7.8.279.9 2019-10-07 03:19:23 -04:00
PPC_OWNERS
PRESUBMIT.py
README.md
S390_OWNERS
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://v8.dev/docs

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 at v8.dev/docs/contribute.