node/deps/v8
Franziska Hinkelmann 4e9bfdf9a7 deps: cherry-pick 3c8195d from V8 upstream
Original commit message:

  [map] Fix map constructor to correctly throw.

  We need to throw before rethrowing, otherwise the exception does
  not trigger a debugger event and is not reported if uncaught.

  R=gsathya@chromium.org, jgruber@chromium.org

  Bug: v8:7047
  Change-Id: I7ce0253883a21d6059e4e0ed0fc56dc55a0dcba6
  Reviewed-on: https://chromium-review.googlesource.com/758372
  Reviewed-by: Jakob Gruber <jgruber@chromium.org>
  Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org>
  Commit-Queue: Yang Guo <yangguo@chromium.org>
  Cr-Commit-Position: refs/heads/master@{#49237}

PR-URL: https://github.com/nodejs/node/pull/16897
Fixes: https://github.com/nodejs/node/issues/16856
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2017-11-14 14:21:27 -06:00
..
base/trace_event/common
benchmarks deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
build_overrides
docs
gni deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06:00
gypfiles deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06:00
include deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06: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 3c8195d from V8 upstream 2017-11-14 14:21:27 -06:00
test deps: cherry-pick 3c8195d from V8 upstream 2017-11-14 14:21:27 -06:00
testing
third_party
tools deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06: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 deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06: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 deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile deps: patch V8 to 6.2.414.44 2017-11-13 11:33:08 -06:00
Makefile.android
OWNERS deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
PRESUBMIT.py
README.md
snapshot_toolchain.gni
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.