node/deps/v8
Michaël Zasso f63ae525fa
deps: V8: cherry-pick 2ada52cffbff
Original commit message:

    [intl] Enhance Date parser to take Unicode SPACE

    This is needed to prepare for the landing of ICU72.
    Allow U+202F in the Date String, which the toLocaleString("en-US")
    will generate w/ ICU72.

    Bug: v8:13494
    Change-Id: I41b83c4094ce3d0737a72dcd6310b52c68fdcdca
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4027341
    Reviewed-by: Yang Guo <yangguo@chromium.org>
    Reviewed-by: Jungshik Shin <jshin@chromium.org>
    Commit-Queue: Frank Tang <ftang@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#84308}

Refs: 2ada52cffb
Fixes: https://github.com/nodejs/node/issues/45171
PR-URL: https://github.com/nodejs/node/pull/45573
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
2022-11-24 11:49:06 -05:00
..
.github
base/trace_event/common
bazel deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
build_overrides
custom_deps
docs
gni
include deps: silence irrelevant V8 warning 2022-11-21 15:20:44 -05:00
infra deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
samples
src deps: V8: cherry-pick 2ada52cffbff 2022-11-24 11:49:06 -05:00
test deps: V8: cherry-pick 2ada52cffbff 2022-11-24 11:49:06 -05:00
testing
third_party build,deps,src: fix Intel VTune profiling support 2022-11-24 11:46:23 -05:00
tools deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore build,deps,src: fix Intel VTune profiling support 2022-11-24 11:46:23 -05:00
.gn
.mailmap
.style.yapf
.vpython3 deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
.ycm_extra_conf.py
AUTHORS deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
BUILD.bazel deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
BUILD.gn deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
DEPS deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
DIR_METADATA
ENG_REVIEW_OWNERS deps: update V8 to 10.8.168.20 2022-11-21 15:20:43 -05:00
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
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.