Go to file
gaosheng08 26ef9a85b8 [code-style] Fix some comments of promise
When I was looking at the v8 Promise source, I noticed that some of the links that needed to point to ECMA262 were broken, some were deprecated, some were not legitimate, so I tried to fix them.

Bug: no
Change-Id: I26deeb635d8c293245e7cdb62089f60557547846
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3462029
Reviewed-by: Shu-yu Guo <syg@chromium.org>
Commit-Queue: Shu-yu Guo <syg@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79411}
2022-03-08 22:30:23 +00:00
.github
bazel [bazel] Add darwin_arm64 to list of cpus 2022-03-04 09:36:06 +00:00
build_overrides
custom_deps
docs
gni
include heap: Migrate full GC cycle UMA metrics 2022-03-08 18:27:13 +00:00
infra [tools] Improve gcmole part I: command line 2022-03-03 15:01:15 +00:00
samples
src [code-style] Fix some comments of promise 2022-03-08 22:30:23 +00:00
test [wasm-relaxed-simd] Enable relaxed conversions on ARM 2022-03-08 18:59:33 +00:00
testing
third_party
tools [intl] Removed shipped flag 2022-03-08 07:06:23 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.style.yapf
.vpython
.vpython3 Use numpy 1.2x.supported.1 in V8 2022-03-03 15:21:21 +00:00
.ycm_extra_conf.py
AUTHORS [code-style] Fix some comments of promise 2022-03-08 22:30:23 +00:00
BUILD.bazel [heap] Rename cppgc_shared targets to heap_base 2022-03-08 09:38:34 +00:00
BUILD.gn [heap] Rename cppgc_shared targets to heap_base 2022-03-08 09:38:34 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS add tebbi@chromium.org to COMMON_OWNERS 2022-03-08 14:08:25 +00:00
DEPS Update V8 DEPS. 2022-03-08 04:07:29 +00: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
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.