0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Michaël Zasso 84d3243ce9
deps: V8: cherry-pick b33af60
Original commit message:

    [api] Get ScriptOrModule from CompileFunctionInContext

    Adds a new out param which allows accessing the ScriptOrModule
    of a function, which allows an embedder such as Node.js to use
    the function's i::Script lifetime.

    Refs: https://github.com/nodejs/node-v8/issues/111
    Change-Id: I34346d94d76e8f9b8377c97d948673f4b95eb9d5
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1699698
    Reviewed-by: Yang Guo <yangguo@chromium.org>
    Commit-Queue: Yang Guo <yangguo@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#62830}

Refs: b33af60dd9

PR-URL: https://github.com/nodejs/node/pull/28016
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
2019-08-01 12:56:38 +02:00
..
base/trace_event/common deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
benchmarks deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
build_overrides deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
custom_deps deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
docs deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
gni deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
include deps: V8: cherry-pick b33af60 2019-08-01 12:56:38 +02:00
infra deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
samples deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
src deps: V8: cherry-pick b33af60 2019-08-01 12:56:38 +02:00
test deps: V8: cherry-pick b33af60 2019-08-01 12:56:38 +02:00
testing
third_party deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
tools deps: V8: update postmortem metadata generation script 2019-08-01 12:55:44 +02:00
.clang-format
.clang-tidy
.editorconfig
.git-blame-ignore-revs deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.gitattributes
.gitignore deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.gn deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.vpython deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.ycm_extra_conf.py
AUTHORS deps: V8: cherry-pick 3b8c624 2019-08-01 12:56:16 +02:00
BUILD.gn deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
ChangeLog deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
DEPS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
ENG_REVIEW_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
INFRA_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
PPC_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
PRESUBMIT.py deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
README.md
S390_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +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://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.