diff options
author | Gus Caplan <me@gus.host> | 2018-07-03 17:42:16 -0500 |
---|---|---|
committer | Michaƫl Zasso <targos@protonmail.com> | 2018-07-26 08:34:24 +0200 |
commit | a921aff334e4d8d1df012608ec1e8fef9a4a0968 (patch) | |
tree | 8ecd9370b9c1f4c8b089facaf897df9dc08940b0 /deps/v8/src/api.h | |
parent | eea5aeea475afc0c97f8ce0af1675cfcea027d39 (diff) | |
download | node-new-a921aff334e4d8d1df012608ec1e8fef9a4a0968.tar.gz |
deps: cherry-pick 477df06 from upstream v8
Original commit message:
[API] Expand BigInt API
Provide a more complete BigInt API.
Bug: v8:7712
Cq-Include-Trybots: luci.chromium.try:linux_chromium_rel_ng
Change-Id: Ic8562d616f3125deabdf8b52c7019b191bef0e07
Reviewed-on: chromium-review.googlesource.com/1101198
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Reviewed-by: Yang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#54122}
PR-URL: https://github.com/nodejs/node/pull/21644
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'deps/v8/src/api.h')
-rw-r--r-- | deps/v8/src/api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deps/v8/src/api.h b/deps/v8/src/api.h index d1297c8f38..342ab855ac 100644 --- a/deps/v8/src/api.h +++ b/deps/v8/src/api.h @@ -127,6 +127,7 @@ class RegisteredExtension { V(Promise, JSPromise) \ V(Primitive, Object) \ V(PrimitiveArray, FixedArray) \ + V(BigInt, BigInt) \ V(ScriptOrModule, Script) class Utils { |