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

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.