node/deps/v8
Benjamin Coe 6d9a3162bf deps: V8: cherry-pick 6be2f6e26e8d
Original commit message:

    [coverage] IncBlockCounter should not be side-effect

    Incrementing coverage counter was triggering EvalError for
    evaluateOnCallFrame when throwOnSideEffect is true.

    R=jgruber@chromium.org, sigurds@chromium.org, yangguo@chromium.org

    Bug: v8:10856
    Change-Id: I0552e19a3a14ff61a9cb626494fb4a21979d535e
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2384011
    Commit-Queue: Benjamin Coe <bencoe@google.com>
    Reviewed-by: Jakob Gruber <jgruber@chromium.org>
    Reviewed-by: Yang Guo <yangguo@chromium.org>
    Reviewed-by: Sigurd Schneider <sigurds@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#69628}

Refs: 6be2f6e26e

PR-URL: https://github.com/nodejs/node/pull/35055
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2020-09-06 16:17:33 -07:00
..
base/trace_event/common
build_overrides deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
custom_deps
docs
gni deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
include deps: V8: silence irrelevant warnings 2020-07-13 14:42:04 +02:00
infra deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
samples
src deps: V8: cherry-pick 6be2f6e26e8d 2020-09-06 16:17:33 -07:00
test deps: V8: cherry-pick 6be2f6e26e8d 2020-09-06 16:17:33 -07:00
testing deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
third_party deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
tools deps: update V8 postmortem metadata script 2020-07-13 14:42:32 +02:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
BUILD.gn deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
CODE_OF_CONDUCT.md
COMMON_OWNERS deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
DEPS deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
S390_OWNERS
WATCHLISTS deps: update V8 to 8.4.371.19 2020-07-13 14:41:41 +02:00
codereview.settings

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://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.