0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Franziska Hinkelmann ccab7d1dac deps: cherry-pick cc55747 from V8 upstream
This fixes the flaky message/console test on our CI.

Original commit message:
  [test/message] Allow numbers to have more than one leading digit.

  The {NUMBER} regexp only allowed one, leading to occasional test
  failures such as:
  https://build.chromium.org/p/client.v8/builders/V8%20Mac%20-%20debug/builds/17156

  Bug:
  Change-Id: I25a08b80640d9af19ba70c61c846163685f1cb82
  Reviewed-on: https://chromium-review.googlesource.com/753322
  Reviewed-by: Franziska Hinkelmann <franzih@chromium.org>
  Commit-Queue: Georg Neis <neis@chromium.org>
  Cr-Commit-Position: refs/heads/master@{#49109}

PR-URL: https://github.com/nodejs/node/pull/16890
Ref: https://github.com/nodejs/build/issues/936
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-11-10 12:35:14 +01:00
..
base/trace_event/common deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
benchmarks deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
build_overrides deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
docs
gni Revert "deps: update V8 to 6.2.414.33" 2017-10-26 14:41:40 +02:00
gypfiles Revert "deps: update V8 to 6.2.414.33" 2017-10-26 14:41:40 +02:00
include deps: V8: backport b1cd96e from upstream 2017-10-29 09:38:30 -07:00
infra deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
samples deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
src deps: cherry-pick b8331cc030 from upstream V8 2017-11-09 11:48:02 +01:00
test deps: cherry-pick cc55747 from V8 upstream 2017-11-10 12:35:14 +01:00
testing
third_party deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
tools Revert "deps: update V8 to 6.2.414.33" 2017-10-26 14:41:40 +02:00
.clang-format
.editorconfig deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
.gitignore deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
.gn
.ycm_extra_conf.py
AUTHORS deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
BUILD.gn Revert "deps: update V8 to 6.2.414.33" 2017-10-26 14:41:40 +02:00
ChangeLog deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
CODE_OF_CONDUCT.md
codereview.settings deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
DEPS deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
Makefile.android
OWNERS deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
PRESUBMIT.py deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
README.md
snapshot_toolchain.gni deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02:00
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://github.com/v8/v8/wiki

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 on the V8 wiki.