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

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.