0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Chengzhong Wu fbfa77b712
deps: V8: cherry-pick 0f9ebbc672c7
Original commit message:

    [flags] Remove --harmony-string-is-well-formed

    The String.prototype.isWellFormed and toWellFormed have shipped
    since M111.

    Bug: v8:13557
    Change-Id: I27e332d2fde0f9ea8ad649c016a84d2d3e0bf592
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4931269
    Reviewed-by: Shu-yu Guo <syg@chromium.org>
    Commit-Queue: Chengzhong Wu (legendecas) <legendecas@gmail.com>
    Cr-Commit-Position: refs/heads/main@{#90398}

Refs: 0f9ebbc672
PR-URL: https://github.com/nodejs/node/pull/50867
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
2023-11-24 03:38:54 +00:00
..
.github
base/trace_event/common
bazel deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
build_overrides
custom_deps
docs
gni deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
include deps: patch V8 to 11.8.172.17 2023-10-31 13:37:03 +00:00
infra deps: patch V8 to 11.8.172.17 2023-10-31 13:37:03 +00:00
samples deps: V8: cherry-pick 93b1a74cbc9b 2023-10-10 08:26:32 +02:00
src deps: V8: cherry-pick 0f9ebbc672c7 2023-11-24 03:38:54 +00:00
test deps: V8: cherry-pick 475c8cdf9a95 2023-11-20 23:08:08 +00:00
testing
third_party deps: patch V8 to avoid duplicated zlib symbol 2023-10-10 08:26:26 +02:00
tools deps: V8: cherry-pick 475c8cdf9a95 2023-11-20 23:08:08 +00:00
.bazelrc
.clang-format deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.gn deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.mailmap
.style.yapf
.vpython3 deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
.ycm_extra_conf.py
AUTHORS deps: V8: cherry-pick f7d000a7ae7b 2023-10-23 15:27:33 +00:00
BUILD.bazel deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
BUILD.gn deps: V8: cherry-pick 475c8cdf9a95 2023-11-20 23:08:08 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
DEPS deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00

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.