Jun Yuan Tan 3909103724 Update v8 source 1 vuosi sitten
..
base 3909103724 Update v8 source 1 vuosi sitten
bazel 3909103724 Update v8 source 1 vuosi sitten
build 3909103724 Update v8 source 1 vuosi sitten
build_overrides 3909103724 Update v8 source 1 vuosi sitten
buildtools 3909103724 Update v8 source 1 vuosi sitten
custom_deps 3909103724 Update v8 source 1 vuosi sitten
docs 3909103724 Update v8 source 1 vuosi sitten
gni 3909103724 Update v8 source 1 vuosi sitten
include 3909103724 Update v8 source 1 vuosi sitten
infra 3909103724 Update v8 source 1 vuosi sitten
samples 3909103724 Update v8 source 1 vuosi sitten
src 3909103724 Update v8 source 1 vuosi sitten
test 3909103724 Update v8 source 1 vuosi sitten
testing 3909103724 Update v8 source 1 vuosi sitten
third_party 3909103724 Update v8 source 1 vuosi sitten
tools 3909103724 Update v8 source 1 vuosi sitten
.bazelrc 3909103724 Update v8 source 1 vuosi sitten
.clang-format 3909103724 Update v8 source 1 vuosi sitten
.clang-tidy 3909103724 Update v8 source 1 vuosi sitten
.editorconfig 3909103724 Update v8 source 1 vuosi sitten
.flake8 3909103724 Update v8 source 1 vuosi sitten
.gn 3909103724 Update v8 source 1 vuosi sitten
.landmines 3909103724 Update v8 source 1 vuosi sitten
.mailmap 3909103724 Update v8 source 1 vuosi sitten
.style.yapf 3909103724 Update v8 source 1 vuosi sitten
.vpython 3909103724 Update v8 source 1 vuosi sitten
.vpython3 3909103724 Update v8 source 1 vuosi sitten
.ycm_extra_conf.py 3909103724 Update v8 source 1 vuosi sitten
AUTHORS 3909103724 Update v8 source 1 vuosi sitten
BUILD.bazel 3909103724 Update v8 source 1 vuosi sitten
BUILD.gn 3909103724 Update v8 source 1 vuosi sitten
CODE_OF_CONDUCT.md 3909103724 Update v8 source 1 vuosi sitten
COMMON_OWNERS 3909103724 Update v8 source 1 vuosi sitten
DEPS 3909103724 Update v8 source 1 vuosi sitten
DIR_METADATA 3909103724 Update v8 source 1 vuosi sitten
ENG_REVIEW_OWNERS 3909103724 Update v8 source 1 vuosi sitten
INFRA_OWNERS 3909103724 Update v8 source 1 vuosi sitten
INTL_OWNERS 3909103724 Update v8 source 1 vuosi sitten
LICENSE 3909103724 Update v8 source 1 vuosi sitten
LICENSE.fdlibm 3909103724 Update v8 source 1 vuosi sitten
LICENSE.strongtalk 3909103724 Update v8 source 1 vuosi sitten
LICENSE.v8 3909103724 Update v8 source 1 vuosi sitten
LOONG_OWNERS 3909103724 Update v8 source 1 vuosi sitten
MIPS_OWNERS 3909103724 Update v8 source 1 vuosi sitten
OWNERS 3909103724 Update v8 source 1 vuosi sitten
PPC_OWNERS 3909103724 Update v8 source 1 vuosi sitten
PRESUBMIT.py 3909103724 Update v8 source 1 vuosi sitten
README.md 3909103724 Update v8 source 1 vuosi sitten
RISCV_OWNERS 3909103724 Update v8 source 1 vuosi sitten
S390_OWNERS 3909103724 Update v8 source 1 vuosi sitten
WATCHLISTS 3909103724 Update v8 source 1 vuosi sitten
WORKSPACE 3909103724 Update v8 source 1 vuosi sitten
codereview.settings 3909103724 Update v8 source 1 vuosi sitten

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.