node/deps/v8
Gus Caplan ebc370cac8
deps: V8: cherry-pick cc9a8a37445e
Original commit message:

    fix overflow check in error formatting

    Bug: v8:12494
    Change-Id: Iba2684173296aa236f1a1c73a5606c21472eff06
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3426634
    Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
    Commit-Queue: Gus Caplan <snek@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#78909}

Refs: cc9a8a3744

PR-URL: https://github.com/nodejs/node/pull/41825
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2022-02-05 18:18:55 -05:00
..
.github
base/trace_event/common deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
bazel deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
build_overrides
custom_deps
docs
gni
include deps: patch V8 to 9.4.146.24 2021-11-24 13:16:22 +00:00
infra deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
samples
src deps: V8: cherry-pick cc9a8a37445e 2022-02-05 18:18:55 -05:00
test deps: V8: cherry-pick cced52a97ee9 2022-01-31 22:58:05 -05:00
testing
third_party deps: V8: patch jinja2 for Python 3.10 compat 2021-10-07 03:56:50 -04:00
tools deps: make V8 9.4 abi-compatible with 9.0 2021-10-04 13:26:55 +02:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.vpython
.ycm_extra_conf.py deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
AUTHORS deps: V8: cherry-pick 422dc378a1da 2021-11-24 16:34:46 +00:00
BUILD.bazel deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
BUILD.gn deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
MIPS_OWNERS
OWNERS deps: patch V8 to 9.4.146.24 2021-11-24 13:16:22 +00:00
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS deps: update V8 to 9.4.146.19 2021-10-04 13:24:57 +02:00
WORKSPACE

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.