node-aix-ppc64 19.3.0 → 19.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +141 -1
- package/LICENSE +262 -0
- package/README.md +2 -3
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +3 -1
- package/include/node/node.exp +619 -189
- package/include/node/node_version.h +1 -1
- package/include/node/v8-internal.h +2 -1
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
|
@@ -398,7 +398,8 @@ constexpr uint64_t kAllExternalPointerTypeTags[] = {
|
|
|
398
398
|
V(kWasmInternalFunctionCallTargetTag, sandboxed, TAG(17)) \
|
|
399
399
|
V(kWasmTypeInfoNativeTypeTag, sandboxed, TAG(18)) \
|
|
400
400
|
V(kWasmExportedFunctionDataSignatureTag, sandboxed, TAG(19)) \
|
|
401
|
-
V(kWasmContinuationJmpbufTag, sandboxed, TAG(20))
|
|
401
|
+
V(kWasmContinuationJmpbufTag, sandboxed, TAG(20)) \
|
|
402
|
+
V(kArrayBufferExtensionTag, sandboxed, TAG(21))
|
|
402
403
|
|
|
403
404
|
// All external pointer tags.
|
|
404
405
|
#define ALL_EXTERNAL_POINTER_TAGS(V) \
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 10
|
|
12
12
|
#define V8_MINOR_VERSION 8
|
|
13
13
|
#define V8_BUILD_NUMBER 168
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 25
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|