0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/deps/v8
bcoe 596116168a
deps: V8: cherry-pick 0dfd9ea51241
Original commit message:

    [coverage] Fix coverage with default arguments

    In the presence of default arguments, the body of the function gets
    wrapped into another block. This caused our trailing-range-after-return
    optimization to not apply, because the wrapper block had no source
    range assigned. This CL correctly assignes a source range to that block,
    which allows already present code to handle it correctly.

    Note that this is not a real coverage bug; we've just been reporting
    whitespace as uncovered. We're fixing it for consistency.

    Originally reported on github.com/bcoe/c8/issues/66

    Bug: v8:9952
    Change-Id: Iab3905f558eb99126e0dad8072d03d0a312fdcd3
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1903430
    Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
    Reviewed-by: Toon Verwaest <verwaest@chromium.org>
    Reviewed-by: Jakob Gruber <jgruber@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#64836}

Refs: 0dfd9ea512

PR-URL: https://github.com/nodejs/node/pull/30713
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2019-11-30 12:13:16 -08:00
..
base/trace_event/common
benchmarks
build_overrides
custom_deps
docs
gni deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
include deps: patch V8 to 7.9.317.25 2019-11-30 01:26:32 +01:00
infra deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
samples
src deps: V8: cherry-pick 0dfd9ea51241 2019-11-30 12:13:16 -08:00
test deps: V8: cherry-pick 0dfd9ea51241 2019-11-30 12:13:16 -08:00
testing
third_party deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
tools deps: V8: cherry-pick a7dffcd767be 2019-11-08 15:53:35 +01:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
BUILD.gn deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
ChangeLog deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
DEPS deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
PPC_OWNERS
PRESUBMIT.py deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
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.