node-aix-ppc64 21.6.2 → 21.7.1
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 +397 -0
- package/README.md +18 -14
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -0
- package/include/node/js_native_api.h +7 -0
- package/include/node/node.exp +721 -99
- package/include/node/node_version.h +2 -2
- package/include/node/v8-script.h +21 -0
- package/package.json +1 -1
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -323,6 +323,7 @@
|
|
|
323
323
|
'lib/readline.js',
|
|
324
324
|
'lib/readline/promises.js',
|
|
325
325
|
'lib/repl.js',
|
|
326
|
+
'lib/sea.js',
|
|
326
327
|
'lib/stream.js',
|
|
327
328
|
'lib/stream/consumers.js',
|
|
328
329
|
'lib/stream/promises.js',
|
|
@@ -374,6 +375,7 @@
|
|
|
374
375
|
'shlib_suffix': '120.a',
|
|
375
376
|
'single_executable_application': 'true',
|
|
376
377
|
'target_arch': 'ppc64',
|
|
378
|
+
'use_prefix_to_find_headers': 'false',
|
|
377
379
|
'v8_enable_31bit_smis_on_64bit_arch': 0,
|
|
378
380
|
'v8_enable_extensible_ro_snapshot': 0,
|
|
379
381
|
'v8_enable_gdbjit': 0,
|
|
@@ -111,6 +111,13 @@ node_api_create_external_string_utf16(napi_env env,
|
|
|
111
111
|
napi_value* result,
|
|
112
112
|
bool* copied);
|
|
113
113
|
#endif // NAPI_EXPERIMENTAL
|
|
114
|
+
|
|
115
|
+
#ifdef NAPI_EXPERIMENTAL
|
|
116
|
+
#define NODE_API_EXPERIMENTAL_HAS_PROPERTY_KEYS
|
|
117
|
+
NAPI_EXTERN napi_status NAPI_CDECL node_api_create_property_key_utf16(
|
|
118
|
+
napi_env env, const char16_t* str, size_t length, napi_value* result);
|
|
119
|
+
#endif // NAPI_EXPERIMENTAL
|
|
120
|
+
|
|
114
121
|
NAPI_EXTERN napi_status NAPI_CDECL napi_create_symbol(napi_env env,
|
|
115
122
|
napi_value description,
|
|
116
123
|
napi_value* result);
|