node-aix-ppc64 19.7.0 → 19.8.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 +236 -1
- package/README.md +5 -0
- package/bin/node +0 -0
- package/include/node/common.gypi +7 -7
- package/include/node/config.gypi +1 -0
- package/include/node/node.exp +249 -115
- package/include/node/node.h +6 -0
- package/include/node/node_api.h +2 -0
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +6 -0
package/include/node/node.h
CHANGED
|
@@ -696,6 +696,12 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
|
|
|
696
696
|
ThreadId child_thread_id,
|
|
697
697
|
const char* child_url);
|
|
698
698
|
|
|
699
|
+
NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
|
|
700
|
+
Environment* parent_env,
|
|
701
|
+
ThreadId child_thread_id,
|
|
702
|
+
const char* child_url,
|
|
703
|
+
const char* name);
|
|
704
|
+
|
|
699
705
|
struct StartExecutionCallbackInfo {
|
|
700
706
|
v8::Local<v8::Object> process_object;
|
|
701
707
|
v8::Local<v8::Function> native_require;
|
package/include/node/node_api.h
CHANGED
|
@@ -175,6 +175,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_get_buffer_info(napi_env env,
|
|
|
175
175
|
void** data,
|
|
176
176
|
size_t* length);
|
|
177
177
|
|
|
178
|
+
#ifndef __wasm32__
|
|
178
179
|
// Methods to manage simple async operations
|
|
179
180
|
NAPI_EXTERN napi_status NAPI_CDECL
|
|
180
181
|
napi_create_async_work(napi_env env,
|
|
@@ -190,6 +191,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_queue_async_work(napi_env env,
|
|
|
190
191
|
napi_async_work work);
|
|
191
192
|
NAPI_EXTERN napi_status NAPI_CDECL napi_cancel_async_work(napi_env env,
|
|
192
193
|
napi_async_work work);
|
|
194
|
+
#endif // __wasm32__
|
|
193
195
|
|
|
194
196
|
// version management
|
|
195
197
|
NAPI_EXTERN napi_status NAPI_CDECL
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -398,6 +398,12 @@ Starts the Node.js command line test runner.
|
|
|
398
398
|
A regular expression that configures the test runner to only execute tests
|
|
399
399
|
whose name matches the provided pattern.
|
|
400
400
|
.
|
|
401
|
+
.It Fl -test-reporter
|
|
402
|
+
A test reporter to use when running tests.
|
|
403
|
+
.
|
|
404
|
+
.It Fl -test-reporter-destination
|
|
405
|
+
The destination for the corresponding test reporter.
|
|
406
|
+
.
|
|
401
407
|
.It Fl -test-only
|
|
402
408
|
Configures the test runner to only execute top level tests that have the `only`
|
|
403
409
|
option set.
|