Go to file
Toon Verwaest 4f6bcc1d34 [unicode] Fix Utf8Decoder::is_one_byte to actually include latin1
Change-Id: Ibb3f6d5a0f2f24ff5359ca280f058a20c8215ac1
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1624801
Auto-Submit: Toon Verwaest <verwaest@chromium.org>
Commit-Queue: Igor Sheludko <ishell@chromium.org>
Reviewed-by: Igor Sheludko <ishell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#61758}
2019-05-22 17:01:37 +00:00
benchmarks
build_overrides
custom_deps
docs
gni
include Revert "[tracing] Add a configurable output stream for perfetto tracing" 2019-05-22 15:58:11 +00:00
infra Revert "Reland "[ptr-compr][x64] Temporarily enable pointer compression on x64"" 2019-05-22 12:51:53 +00:00
samples
src [unicode] Fix Utf8Decoder::is_one_byte to actually include latin1 2019-05-22 17:01:37 +00:00
test Revert "[tracing] Add a configurable output stream for perfetto tracing" 2019-05-22 15:58:11 +00:00
testing
third_party [DevTools] Roll inspector-protocol to v8 2019-05-22 06:15:38 +00:00
tools Revert "Reland "[ptr-compr][x64] Temporarily enable pointer compression on x64"" 2019-05-22 12:51:53 +00:00
.clang-format
.clang-tidy
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS
BUILD.gn [mksnapshot] Add abstract base class for platform embedded file writers 2019-05-22 14:01:00 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS [OWNERS] Add solanes@ to COMMON_OWNERS 2019-05-22 13:50:51 +00:00
DEPS Update V8 DEPS. 2019-05-22 06:14:33 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS
PRESUBMIT.py
README.md
WATCHLISTS

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.