node-aix-ppc64 20.0.0 → 20.1.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 +170 -1
- package/LICENSE +538 -514
- package/README.md +6 -6
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -2
- package/include/node/node.exp +12671 -12376
- package/include/node/node.h +2 -1
- package/include/node/node_version.h +1 -1
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
package/include/node/node.h
CHANGED
|
@@ -722,7 +722,8 @@ NODE_EXTERN ArrayBufferAllocator* GetArrayBufferAllocator(IsolateData* data);
|
|
|
722
722
|
// a snapshot and have a main context that was read from that snapshot.
|
|
723
723
|
NODE_EXTERN v8::Local<v8::Context> GetMainContext(Environment* env);
|
|
724
724
|
|
|
725
|
-
NODE_EXTERN void OnFatalError(const char* location,
|
|
725
|
+
[[noreturn]] NODE_EXTERN void OnFatalError(const char* location,
|
|
726
|
+
const char* message);
|
|
726
727
|
NODE_EXTERN void PromiseRejectCallback(v8::PromiseRejectMessage message);
|
|
727
728
|
NODE_EXTERN bool AllowWasmCodeGenerationCallback(v8::Local<v8::Context> context,
|
|
728
729
|
v8::Local<v8::String>);
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 11
|
|
12
12
|
#define V8_MINOR_VERSION 3
|
|
13
13
|
#define V8_BUILD_NUMBER 244
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 8
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|