node-aix-ppc64 22.7.0 → 22.9.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 +391 -0
- package/LICENSE +215 -33
- package/README.md +4 -4
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +4 -1
- package/include/node/js_native_api.h +4 -0
- package/include/node/node.exp +486 -282
- package/include/node/node_version.h +1 -1
- package/include/node/v8-isolate.h +7 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +12 -0
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
#include <stdint.h>
|
|
10
10
|
|
|
11
11
|
#include <memory>
|
|
12
|
+
#include <string>
|
|
12
13
|
#include <utility>
|
|
13
14
|
|
|
14
15
|
#include "cppgc/common.h"
|
|
@@ -1711,6 +1712,12 @@ class V8_EXPORT Isolate {
|
|
|
1711
1712
|
*/
|
|
1712
1713
|
void LocaleConfigurationChangeNotification();
|
|
1713
1714
|
|
|
1715
|
+
/**
|
|
1716
|
+
* Returns the default locale in a string if Intl support is enabled.
|
|
1717
|
+
* Otherwise returns an empty string.
|
|
1718
|
+
*/
|
|
1719
|
+
std::string GetDefaultLocale();
|
|
1720
|
+
|
|
1714
1721
|
Isolate() = delete;
|
|
1715
1722
|
~Isolate() = delete;
|
|
1716
1723
|
Isolate(const Isolate&) = delete;
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -185,6 +185,9 @@ Enable the experimental node:sqlite module.
|
|
|
185
185
|
.It Fl -experimental-test-coverage
|
|
186
186
|
Enable code coverage in the test runner.
|
|
187
187
|
.
|
|
188
|
+
.It Fl -experimental-test-isolation Ns = Ns Ar mode
|
|
189
|
+
Configures the type of test isolation used in the test runner.
|
|
190
|
+
.
|
|
188
191
|
.It Fl -experimental-test-module-mocks
|
|
189
192
|
Enable module mocking in the test runner.
|
|
190
193
|
.
|
|
@@ -447,12 +450,21 @@ Starts the Node.js command line test runner.
|
|
|
447
450
|
The maximum number of test files that the test runner CLI will execute
|
|
448
451
|
concurrently.
|
|
449
452
|
.
|
|
453
|
+
.It Fl -test-coverage-branches Ns = Ns Ar threshold
|
|
454
|
+
Require a minimum threshold for branch coverage (0 - 100).
|
|
455
|
+
.
|
|
450
456
|
.It Fl -test-coverage-exclude
|
|
451
457
|
A glob pattern that excludes matching files from the coverage report
|
|
452
458
|
.
|
|
459
|
+
.It Fl -test-coverage-functions Ns = Ns Ar threshold
|
|
460
|
+
Require a minimum threshold for function coverage (0 - 100).
|
|
461
|
+
.
|
|
453
462
|
.It Fl -test-coverage-include
|
|
454
463
|
A glob pattern that only includes matching files in the coverage report
|
|
455
464
|
.
|
|
465
|
+
.It Fl -test-coverage-lines Ns = Ns Ar threshold
|
|
466
|
+
Require a minimum threshold for line coverage (0 - 100).
|
|
467
|
+
.
|
|
456
468
|
.It Fl -test-force-exit
|
|
457
469
|
Configures the test runner to exit the process once all known tests have
|
|
458
470
|
finished executing even if the event loop would otherwise remain active.
|