node-aix-ppc64 22.6.0 → 22.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 +353 -0
- package/LICENSE +205 -0
- package/README.md +18 -24
- package/bin/node +0 -0
- package/include/node/common.gypi +8 -5
- package/include/node/config.gypi +5 -2
- package/include/node/node.exp +777 -527
- 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 +15 -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
|
.
|
|
@@ -194,6 +197,9 @@ Enable snapshot testing in the test runner.
|
|
|
194
197
|
.It Fl -experimental-strip-types
|
|
195
198
|
Enable experimental type-stripping for TypeScript files.
|
|
196
199
|
.
|
|
200
|
+
.It Fl -experimental-transform-types
|
|
201
|
+
Enable transformation of TypeScript-only syntax into JavaScript code.
|
|
202
|
+
.
|
|
197
203
|
.It Fl -experimental-eventsource
|
|
198
204
|
Enable experimental support for the EventSource Web API.
|
|
199
205
|
.
|
|
@@ -444,12 +450,21 @@ Starts the Node.js command line test runner.
|
|
|
444
450
|
The maximum number of test files that the test runner CLI will execute
|
|
445
451
|
concurrently.
|
|
446
452
|
.
|
|
453
|
+
.It Fl -test-coverage-branches Ns = Ns Ar threshold
|
|
454
|
+
Require a minimum threshold for branch coverage (0 - 100).
|
|
455
|
+
.
|
|
447
456
|
.It Fl -test-coverage-exclude
|
|
448
457
|
A glob pattern that excludes matching files from the coverage report
|
|
449
458
|
.
|
|
459
|
+
.It Fl -test-coverage-functions Ns = Ns Ar threshold
|
|
460
|
+
Require a minimum threshold for function coverage (0 - 100).
|
|
461
|
+
.
|
|
450
462
|
.It Fl -test-coverage-include
|
|
451
463
|
A glob pattern that only includes matching files in the coverage report
|
|
452
464
|
.
|
|
465
|
+
.It Fl -test-coverage-lines Ns = Ns Ar threshold
|
|
466
|
+
Require a minimum threshold for line coverage (0 - 100).
|
|
467
|
+
.
|
|
453
468
|
.It Fl -test-force-exit
|
|
454
469
|
Configures the test runner to exit the process once all known tests have
|
|
455
470
|
finished executing even if the event loop would otherwise remain active.
|