node-linux-arm64 18.10.0 → 19.0.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 +132 -1597
- package/README.md +11 -16
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +251 -248
- package/include/node/cppgc/common.h +0 -1
- package/include/node/node.h +96 -10
- package/include/node/node_version.h +3 -3
- package/include/node/v8-callbacks.h +19 -5
- package/include/node/v8-context.h +12 -8
- package/include/node/v8-date.h +5 -0
- package/include/node/v8-embedder-heap.h +8 -3
- package/include/node/v8-exception.h +1 -1
- package/include/node/v8-function.h +8 -0
- package/include/node/v8-initialization.h +23 -49
- package/include/node/v8-internal.h +312 -123
- package/include/node/v8-isolate.h +26 -42
- package/include/node/v8-local-handle.h +5 -5
- package/include/node/v8-locker.h +0 -11
- package/include/node/v8-maybe.h +24 -1
- package/include/node/v8-message.h +2 -4
- package/include/node/v8-microtask-queue.h +1 -1
- package/include/node/v8-object.h +8 -15
- package/include/node/v8-persistent-handle.h +0 -2
- package/include/node/v8-platform.h +54 -25
- package/include/node/v8-primitive.h +8 -8
- package/include/node/v8-profiler.h +84 -22
- package/include/node/v8-regexp.h +2 -1
- package/include/node/v8-script.h +62 -6
- package/include/node/v8-template.h +13 -76
- package/include/node/v8-value-serializer.h +46 -23
- package/include/node/v8-version.h +3 -3
- package/include/node/v8-wasm.h +5 -62
- package/include/node/v8-weak-callback-info.h +0 -7
- package/include/node/v8config.h +247 -13
- package/package.json +1 -1
- package/share/doc/node/gdbinit +9 -1
- package/share/man/man1/node.1 +13 -6
- package/share/systemtap/tapset/node.stp +0 -146
package/include/node/config.gypi
CHANGED
|
@@ -22,301 +22,306 @@
|
|
|
22
22
|
'libdir': 'lib',
|
|
23
23
|
'llvm_version': '0.0',
|
|
24
24
|
'napi_build_version': '8',
|
|
25
|
+
'node_builtin_shareable_builtins': ['deps/cjs-module-lexer/lexer.js', 'deps/cjs-module-lexer/dist/lexer.js', 'deps/undici/undici.js'],
|
|
25
26
|
'node_byteorder': 'little',
|
|
26
27
|
'node_debug_lib': 'false',
|
|
27
28
|
'node_enable_d8': 'false',
|
|
28
29
|
'node_fipsinstall': 'false',
|
|
29
30
|
'node_install_corepack': 'true',
|
|
30
31
|
'node_install_npm': 'true',
|
|
31
|
-
'node_library_files': [ 'lib/
|
|
32
|
+
'node_library_files': [ 'lib/_http_agent.js',
|
|
33
|
+
'lib/_http_client.js',
|
|
34
|
+
'lib/_http_common.js',
|
|
35
|
+
'lib/_http_incoming.js',
|
|
36
|
+
'lib/_http_outgoing.js',
|
|
37
|
+
'lib/_http_server.js',
|
|
38
|
+
'lib/_stream_duplex.js',
|
|
32
39
|
'lib/_stream_passthrough.js',
|
|
33
|
-
'lib/
|
|
34
|
-
'lib/module.js',
|
|
40
|
+
'lib/_stream_readable.js',
|
|
35
41
|
'lib/_stream_transform.js',
|
|
36
|
-
'lib/
|
|
37
|
-
'lib/buffer.js',
|
|
42
|
+
'lib/_stream_wrap.js',
|
|
38
43
|
'lib/_stream_writable.js',
|
|
39
|
-
'lib/string_decoder.js',
|
|
40
|
-
'lib/inspector.js',
|
|
41
|
-
'lib/crypto.js',
|
|
42
|
-
'lib/diagnostics_channel.js',
|
|
43
|
-
'lib/wasi.js',
|
|
44
|
-
'lib/test.js',
|
|
45
|
-
'lib/util.js',
|
|
46
|
-
'lib/sys.js',
|
|
47
|
-
'lib/tls.js',
|
|
48
|
-
'lib/dns.js',
|
|
49
44
|
'lib/_tls_common.js',
|
|
50
|
-
'lib/
|
|
45
|
+
'lib/_tls_wrap.js',
|
|
51
46
|
'lib/assert.js',
|
|
52
|
-
'lib/
|
|
53
|
-
'lib/worker_threads.js',
|
|
54
|
-
'lib/path.js',
|
|
55
|
-
'lib/http2.js',
|
|
56
|
-
'lib/readline.js',
|
|
57
|
-
'lib/_http_common.js',
|
|
58
|
-
'lib/_stream_readable.js',
|
|
59
|
-
'lib/_http_client.js',
|
|
47
|
+
'lib/assert/strict.js',
|
|
60
48
|
'lib/async_hooks.js',
|
|
61
|
-
'lib/
|
|
62
|
-
'lib/
|
|
63
|
-
'lib/
|
|
49
|
+
'lib/buffer.js',
|
|
50
|
+
'lib/child_process.js',
|
|
51
|
+
'lib/cluster.js',
|
|
52
|
+
'lib/console.js',
|
|
64
53
|
'lib/constants.js',
|
|
65
|
-
'lib/
|
|
66
|
-
'lib/process.js',
|
|
54
|
+
'lib/crypto.js',
|
|
67
55
|
'lib/dgram.js',
|
|
68
|
-
'lib/
|
|
56
|
+
'lib/diagnostics_channel.js',
|
|
57
|
+
'lib/dns.js',
|
|
58
|
+
'lib/dns/promises.js',
|
|
69
59
|
'lib/domain.js',
|
|
70
|
-
'lib/
|
|
71
|
-
'lib/_stream_duplex.js',
|
|
72
|
-
'lib/vm.js',
|
|
73
|
-
'lib/https.js',
|
|
74
|
-
'lib/perf_hooks.js',
|
|
75
|
-
'lib/child_process.js',
|
|
76
|
-
'lib/stream.js',
|
|
77
|
-
'lib/timers.js',
|
|
78
|
-
'lib/querystring.js',
|
|
79
|
-
'lib/net.js',
|
|
80
|
-
'lib/_http_incoming.js',
|
|
60
|
+
'lib/events.js',
|
|
81
61
|
'lib/fs.js',
|
|
82
|
-
'lib/cluster.js',
|
|
83
|
-
'lib/console.js',
|
|
84
|
-
'lib/repl.js',
|
|
85
|
-
'lib/zlib.js',
|
|
86
|
-
'lib/_http_agent.js',
|
|
87
|
-
'lib/_http_outgoing.js',
|
|
88
|
-
'lib/readline/promises.js',
|
|
89
|
-
'lib/timers/promises.js',
|
|
90
|
-
'lib/path/win32.js',
|
|
91
|
-
'lib/path/posix.js',
|
|
92
|
-
'lib/stream/promises.js',
|
|
93
|
-
'lib/stream/consumers.js',
|
|
94
|
-
'lib/stream/web.js',
|
|
95
62
|
'lib/fs/promises.js',
|
|
96
|
-
'lib/
|
|
97
|
-
'lib/
|
|
98
|
-
'lib/
|
|
99
|
-
'lib/
|
|
100
|
-
'lib/
|
|
101
|
-
'lib/internal/freelist.js',
|
|
102
|
-
'lib/internal/trace_events_async_hooks.js',
|
|
103
|
-
'lib/internal/dtrace.js',
|
|
104
|
-
'lib/internal/inspector_async_hook.js',
|
|
105
|
-
'lib/internal/util.js',
|
|
106
|
-
'lib/internal/options.js',
|
|
107
|
-
'lib/internal/cli_table.js',
|
|
108
|
-
'lib/internal/assert.js',
|
|
109
|
-
'lib/internal/heap_utils.js',
|
|
110
|
-
'lib/internal/v8_prof_processor.js',
|
|
111
|
-
'lib/internal/encoding.js',
|
|
112
|
-
'lib/internal/validators.js',
|
|
113
|
-
'lib/internal/worker.js',
|
|
114
|
-
'lib/internal/idna.js',
|
|
63
|
+
'lib/http.js',
|
|
64
|
+
'lib/http2.js',
|
|
65
|
+
'lib/https.js',
|
|
66
|
+
'lib/inspector.js',
|
|
67
|
+
'lib/inspector/promises.js',
|
|
115
68
|
'lib/internal/abort_controller.js',
|
|
116
|
-
'lib/internal/
|
|
69
|
+
'lib/internal/assert.js',
|
|
70
|
+
'lib/internal/assert/assertion_error.js',
|
|
71
|
+
'lib/internal/assert/calltracker.js',
|
|
72
|
+
'lib/internal/assert/snapshot.js',
|
|
117
73
|
'lib/internal/async_hooks.js',
|
|
118
|
-
'lib/internal/constants.js',
|
|
119
|
-
'lib/internal/tty.js',
|
|
120
74
|
'lib/internal/blob.js',
|
|
121
|
-
'lib/internal/dgram.js',
|
|
122
|
-
'lib/internal/js_stream_socket.js',
|
|
123
|
-
'lib/internal/http.js',
|
|
124
|
-
'lib/internal/fixed_queue.js',
|
|
125
|
-
'lib/internal/stream_base_commons.js',
|
|
126
|
-
'lib/internal/structured_clone.js',
|
|
127
|
-
'lib/internal/linkedlist.js',
|
|
128
|
-
'lib/internal/child_process.js',
|
|
129
|
-
'lib/internal/histogram.js',
|
|
130
|
-
'lib/internal/error_serdes.js',
|
|
131
|
-
'lib/internal/timers.js',
|
|
132
|
-
'lib/internal/querystring.js',
|
|
133
|
-
'lib/internal/net.js',
|
|
134
|
-
'lib/internal/v8_prof_polyfill.js',
|
|
135
|
-
'lib/internal/freeze_intrinsics.js',
|
|
136
|
-
'lib/internal/wasm_web_api.js',
|
|
137
|
-
'lib/internal/errors.js',
|
|
138
|
-
'lib/internal/socketaddress.js',
|
|
139
|
-
'lib/internal/repl.js',
|
|
140
|
-
'lib/internal/event_target.js',
|
|
141
75
|
'lib/internal/blocklist.js',
|
|
142
|
-
'lib/internal/legacy/processbinding.js',
|
|
143
|
-
'lib/internal/child_process/serialization.js',
|
|
144
|
-
'lib/internal/cluster/round_robin_handle.js',
|
|
145
|
-
'lib/internal/cluster/child.js',
|
|
146
|
-
'lib/internal/cluster/worker.js',
|
|
147
|
-
'lib/internal/cluster/utils.js',
|
|
148
|
-
'lib/internal/cluster/shared_handle.js',
|
|
149
|
-
'lib/internal/cluster/primary.js',
|
|
150
|
-
'lib/internal/bootstrap/node.js',
|
|
151
76
|
'lib/internal/bootstrap/browser.js',
|
|
152
77
|
'lib/internal/bootstrap/loaders.js',
|
|
153
|
-
'lib/internal/bootstrap/
|
|
78
|
+
'lib/internal/bootstrap/node.js',
|
|
79
|
+
'lib/internal/bootstrap/switches/does_not_own_process_state.js',
|
|
154
80
|
'lib/internal/bootstrap/switches/does_own_process_state.js',
|
|
155
81
|
'lib/internal/bootstrap/switches/is_main_thread.js',
|
|
156
|
-
'lib/internal/bootstrap/switches/
|
|
157
|
-
'lib/internal/
|
|
158
|
-
'lib/internal/
|
|
159
|
-
'lib/internal/
|
|
160
|
-
'lib/internal/
|
|
161
|
-
'lib/internal/
|
|
162
|
-
'lib/internal/
|
|
163
|
-
'lib/internal/
|
|
82
|
+
'lib/internal/bootstrap/switches/is_not_main_thread.js',
|
|
83
|
+
'lib/internal/buffer.js',
|
|
84
|
+
'lib/internal/child_process.js',
|
|
85
|
+
'lib/internal/child_process/serialization.js',
|
|
86
|
+
'lib/internal/cli_table.js',
|
|
87
|
+
'lib/internal/cluster/child.js',
|
|
88
|
+
'lib/internal/cluster/primary.js',
|
|
89
|
+
'lib/internal/cluster/round_robin_handle.js',
|
|
90
|
+
'lib/internal/cluster/shared_handle.js',
|
|
91
|
+
'lib/internal/cluster/utils.js',
|
|
92
|
+
'lib/internal/cluster/worker.js',
|
|
93
|
+
'lib/internal/console/constructor.js',
|
|
94
|
+
'lib/internal/console/global.js',
|
|
95
|
+
'lib/internal/constants.js',
|
|
96
|
+
'lib/internal/crypto/aes.js',
|
|
97
|
+
'lib/internal/crypto/certificate.js',
|
|
98
|
+
'lib/internal/crypto/cfrg.js',
|
|
99
|
+
'lib/internal/crypto/cipher.js',
|
|
100
|
+
'lib/internal/crypto/diffiehellman.js',
|
|
101
|
+
'lib/internal/crypto/ec.js',
|
|
102
|
+
'lib/internal/crypto/hash.js',
|
|
103
|
+
'lib/internal/crypto/hashnames.js',
|
|
104
|
+
'lib/internal/crypto/hkdf.js',
|
|
105
|
+
'lib/internal/crypto/keygen.js',
|
|
106
|
+
'lib/internal/crypto/keys.js',
|
|
107
|
+
'lib/internal/crypto/mac.js',
|
|
108
|
+
'lib/internal/crypto/pbkdf2.js',
|
|
109
|
+
'lib/internal/crypto/random.js',
|
|
110
|
+
'lib/internal/crypto/rsa.js',
|
|
111
|
+
'lib/internal/crypto/scrypt.js',
|
|
112
|
+
'lib/internal/crypto/sig.js',
|
|
113
|
+
'lib/internal/crypto/util.js',
|
|
114
|
+
'lib/internal/crypto/webcrypto.js',
|
|
115
|
+
'lib/internal/crypto/x509.js',
|
|
116
|
+
'lib/internal/debugger/inspect.js',
|
|
117
|
+
'lib/internal/debugger/inspect_client.js',
|
|
118
|
+
'lib/internal/debugger/inspect_repl.js',
|
|
119
|
+
'lib/internal/dgram.js',
|
|
120
|
+
'lib/internal/dns/callback_resolver.js',
|
|
121
|
+
'lib/internal/dns/promises.js',
|
|
122
|
+
'lib/internal/dns/utils.js',
|
|
123
|
+
'lib/internal/encoding.js',
|
|
124
|
+
'lib/internal/error_serdes.js',
|
|
125
|
+
'lib/internal/errors.js',
|
|
126
|
+
'lib/internal/event_target.js',
|
|
127
|
+
'lib/internal/fixed_queue.js',
|
|
128
|
+
'lib/internal/freelist.js',
|
|
129
|
+
'lib/internal/freeze_intrinsics.js',
|
|
130
|
+
'lib/internal/fs/cp/cp-sync.js',
|
|
131
|
+
'lib/internal/fs/cp/cp.js',
|
|
132
|
+
'lib/internal/fs/dir.js',
|
|
133
|
+
'lib/internal/fs/promises.js',
|
|
134
|
+
'lib/internal/fs/read_file_context.js',
|
|
135
|
+
'lib/internal/fs/rimraf.js',
|
|
136
|
+
'lib/internal/fs/streams.js',
|
|
137
|
+
'lib/internal/fs/sync_write_stream.js',
|
|
138
|
+
'lib/internal/fs/utils.js',
|
|
139
|
+
'lib/internal/fs/watchers.js',
|
|
140
|
+
'lib/internal/heap_utils.js',
|
|
141
|
+
'lib/internal/histogram.js',
|
|
142
|
+
'lib/internal/http.js',
|
|
143
|
+
'lib/internal/http2/compat.js',
|
|
144
|
+
'lib/internal/http2/core.js',
|
|
145
|
+
'lib/internal/http2/util.js',
|
|
146
|
+
'lib/internal/idna.js',
|
|
147
|
+
'lib/internal/inspector_async_hook.js',
|
|
148
|
+
'lib/internal/js_stream_socket.js',
|
|
149
|
+
'lib/internal/legacy/processbinding.js',
|
|
150
|
+
'lib/internal/linkedlist.js',
|
|
151
|
+
'lib/internal/main/check_syntax.js',
|
|
152
|
+
'lib/internal/main/environment.js',
|
|
153
|
+
'lib/internal/main/eval_stdin.js',
|
|
154
|
+
'lib/internal/main/eval_string.js',
|
|
155
|
+
'lib/internal/main/inspect.js',
|
|
156
|
+
'lib/internal/main/mksnapshot.js',
|
|
157
|
+
'lib/internal/main/print_help.js',
|
|
158
|
+
'lib/internal/main/prof_process.js',
|
|
159
|
+
'lib/internal/main/repl.js',
|
|
160
|
+
'lib/internal/main/run_main_module.js',
|
|
161
|
+
'lib/internal/main/test_runner.js',
|
|
162
|
+
'lib/internal/main/watch_mode.js',
|
|
163
|
+
'lib/internal/main/worker_thread.js',
|
|
164
164
|
'lib/internal/modules/cjs/helpers.js',
|
|
165
165
|
'lib/internal/modules/cjs/loader.js',
|
|
166
|
-
'lib/internal/modules/esm/module_map.js',
|
|
167
|
-
'lib/internal/modules/esm/translators.js',
|
|
168
|
-
'lib/internal/modules/esm/load.js',
|
|
169
|
-
'lib/internal/modules/esm/initialize_import_meta.js',
|
|
170
166
|
'lib/internal/modules/esm/assert.js',
|
|
171
|
-
'lib/internal/modules/esm/module_job.js',
|
|
172
|
-
'lib/internal/modules/esm/package_config.js',
|
|
173
|
-
'lib/internal/modules/esm/fetch_module.js',
|
|
174
|
-
'lib/internal/modules/esm/get_format.js',
|
|
175
167
|
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
176
|
-
'lib/internal/modules/esm/
|
|
168
|
+
'lib/internal/modules/esm/fetch_module.js',
|
|
177
169
|
'lib/internal/modules/esm/formats.js',
|
|
170
|
+
'lib/internal/modules/esm/get_format.js',
|
|
178
171
|
'lib/internal/modules/esm/handle_process_exit.js',
|
|
172
|
+
'lib/internal/modules/esm/initialize_import_meta.js',
|
|
173
|
+
'lib/internal/modules/esm/load.js',
|
|
174
|
+
'lib/internal/modules/esm/loader.js',
|
|
175
|
+
'lib/internal/modules/esm/module_job.js',
|
|
176
|
+
'lib/internal/modules/esm/module_map.js',
|
|
177
|
+
'lib/internal/modules/esm/package_config.js',
|
|
179
178
|
'lib/internal/modules/esm/resolve.js',
|
|
180
|
-
'lib/internal/
|
|
181
|
-
'lib/internal/
|
|
182
|
-
'lib/internal/
|
|
183
|
-
'lib/internal/
|
|
184
|
-
'lib/internal/
|
|
185
|
-
'lib/internal/
|
|
186
|
-
'lib/internal/
|
|
187
|
-
'lib/internal/
|
|
188
|
-
'lib/internal/
|
|
189
|
-
'lib/internal/
|
|
190
|
-
'lib/internal/
|
|
191
|
-
'lib/internal/
|
|
192
|
-
'lib/internal/
|
|
179
|
+
'lib/internal/modules/esm/translators.js',
|
|
180
|
+
'lib/internal/modules/package_json_reader.js',
|
|
181
|
+
'lib/internal/modules/run_main.js',
|
|
182
|
+
'lib/internal/net.js',
|
|
183
|
+
'lib/internal/options.js',
|
|
184
|
+
'lib/internal/per_context/domexception.js',
|
|
185
|
+
'lib/internal/per_context/messageport.js',
|
|
186
|
+
'lib/internal/per_context/primordials.js',
|
|
187
|
+
'lib/internal/perf/event_loop_delay.js',
|
|
188
|
+
'lib/internal/perf/event_loop_utilization.js',
|
|
189
|
+
'lib/internal/perf/nodetiming.js',
|
|
190
|
+
'lib/internal/perf/observe.js',
|
|
191
|
+
'lib/internal/perf/performance.js',
|
|
192
|
+
'lib/internal/perf/performance_entry.js',
|
|
193
|
+
'lib/internal/perf/resource_timing.js',
|
|
194
|
+
'lib/internal/perf/timerify.js',
|
|
195
|
+
'lib/internal/perf/usertiming.js',
|
|
196
|
+
'lib/internal/perf/utils.js',
|
|
197
|
+
'lib/internal/policy/manifest.js',
|
|
198
|
+
'lib/internal/policy/sri.js',
|
|
199
|
+
'lib/internal/priority_queue.js',
|
|
200
|
+
'lib/internal/process/esm_loader.js',
|
|
201
|
+
'lib/internal/process/execution.js',
|
|
202
|
+
'lib/internal/process/per_thread.js',
|
|
203
|
+
'lib/internal/process/policy.js',
|
|
204
|
+
'lib/internal/process/pre_execution.js',
|
|
205
|
+
'lib/internal/process/promises.js',
|
|
206
|
+
'lib/internal/process/report.js',
|
|
207
|
+
'lib/internal/process/signal.js',
|
|
208
|
+
'lib/internal/process/task_queues.js',
|
|
209
|
+
'lib/internal/process/warning.js',
|
|
210
|
+
'lib/internal/process/worker_thread_only.js',
|
|
211
|
+
'lib/internal/promise_hooks.js',
|
|
212
|
+
'lib/internal/querystring.js',
|
|
213
|
+
'lib/internal/readline/callbacks.js',
|
|
214
|
+
'lib/internal/readline/emitKeypressEvents.js',
|
|
215
|
+
'lib/internal/readline/interface.js',
|
|
216
|
+
'lib/internal/readline/promises.js',
|
|
217
|
+
'lib/internal/readline/utils.js',
|
|
218
|
+
'lib/internal/repl.js',
|
|
219
|
+
'lib/internal/repl/await.js',
|
|
220
|
+
'lib/internal/repl/history.js',
|
|
221
|
+
'lib/internal/repl/utils.js',
|
|
222
|
+
'lib/internal/socket_list.js',
|
|
223
|
+
'lib/internal/socketaddress.js',
|
|
224
|
+
'lib/internal/source_map/prepare_stack_trace.js',
|
|
225
|
+
'lib/internal/source_map/source_map.js',
|
|
226
|
+
'lib/internal/source_map/source_map_cache.js',
|
|
227
|
+
'lib/internal/stream_base_commons.js',
|
|
228
|
+
'lib/internal/streams/add-abort-signal.js',
|
|
229
|
+
'lib/internal/streams/buffer_list.js',
|
|
193
230
|
'lib/internal/streams/compose.js',
|
|
194
|
-
'lib/internal/streams/from.js',
|
|
195
|
-
'lib/internal/streams/state.js',
|
|
196
|
-
'lib/internal/streams/transform.js',
|
|
197
|
-
'lib/internal/streams/end-of-stream.js',
|
|
198
231
|
'lib/internal/streams/destroy.js',
|
|
199
|
-
'lib/internal/streams/writable.js',
|
|
200
|
-
'lib/internal/streams/utils.js',
|
|
201
|
-
'lib/internal/streams/readable.js',
|
|
202
|
-
'lib/internal/streams/add-abort-signal.js',
|
|
203
|
-
'lib/internal/streams/operators.js',
|
|
204
232
|
'lib/internal/streams/duplex.js',
|
|
205
233
|
'lib/internal/streams/duplexify.js',
|
|
206
|
-
'lib/internal/streams/
|
|
207
|
-
'lib/internal/streams/
|
|
234
|
+
'lib/internal/streams/end-of-stream.js',
|
|
235
|
+
'lib/internal/streams/from.js',
|
|
236
|
+
'lib/internal/streams/lazy_transform.js',
|
|
208
237
|
'lib/internal/streams/legacy.js',
|
|
238
|
+
'lib/internal/streams/operators.js',
|
|
239
|
+
'lib/internal/streams/passthrough.js',
|
|
209
240
|
'lib/internal/streams/pipeline.js',
|
|
210
|
-
'lib/internal/streams/
|
|
241
|
+
'lib/internal/streams/readable.js',
|
|
242
|
+
'lib/internal/streams/state.js',
|
|
243
|
+
'lib/internal/streams/transform.js',
|
|
244
|
+
'lib/internal/streams/utils.js',
|
|
245
|
+
'lib/internal/streams/writable.js',
|
|
246
|
+
'lib/internal/structured_clone.js',
|
|
247
|
+
'lib/internal/test/binding.js',
|
|
248
|
+
'lib/internal/test/transfer.js',
|
|
211
249
|
'lib/internal/test_runner/harness.js',
|
|
212
|
-
'lib/internal/test_runner/
|
|
250
|
+
'lib/internal/test_runner/runner.js',
|
|
213
251
|
'lib/internal/test_runner/tap_stream.js',
|
|
252
|
+
'lib/internal/test_runner/test.js',
|
|
214
253
|
'lib/internal/test_runner/utils.js',
|
|
215
|
-
'lib/internal/
|
|
216
|
-
'lib/internal/process/worker_thread_only.js',
|
|
217
|
-
'lib/internal/process/execution.js',
|
|
218
|
-
'lib/internal/process/signal.js',
|
|
219
|
-
'lib/internal/process/promises.js',
|
|
220
|
-
'lib/internal/process/per_thread.js',
|
|
221
|
-
'lib/internal/process/esm_loader.js',
|
|
222
|
-
'lib/internal/process/pre_execution.js',
|
|
223
|
-
'lib/internal/process/task_queues.js',
|
|
224
|
-
'lib/internal/process/warning.js',
|
|
225
|
-
'lib/internal/process/policy.js',
|
|
226
|
-
'lib/internal/process/report.js',
|
|
227
|
-
'lib/internal/per_context/domexception.js',
|
|
228
|
-
'lib/internal/per_context/messageport.js',
|
|
229
|
-
'lib/internal/per_context/primordials.js',
|
|
230
|
-
'lib/internal/tls/secure-pair.js',
|
|
254
|
+
'lib/internal/timers.js',
|
|
231
255
|
'lib/internal/tls/secure-context.js',
|
|
232
|
-
'lib/internal/
|
|
233
|
-
'lib/internal/
|
|
234
|
-
'lib/internal/
|
|
235
|
-
'lib/internal/
|
|
236
|
-
'lib/internal/
|
|
237
|
-
'lib/internal/
|
|
256
|
+
'lib/internal/tls/secure-pair.js',
|
|
257
|
+
'lib/internal/trace_events_async_hooks.js',
|
|
258
|
+
'lib/internal/tty.js',
|
|
259
|
+
'lib/internal/url.js',
|
|
260
|
+
'lib/internal/util.js',
|
|
261
|
+
'lib/internal/util/colors.js',
|
|
238
262
|
'lib/internal/util/comparisons.js',
|
|
239
|
-
'lib/internal/util/inspector.js',
|
|
240
|
-
'lib/internal/util/iterable_weak_map.js',
|
|
241
263
|
'lib/internal/util/debuglog.js',
|
|
242
|
-
'lib/internal/util/types.js',
|
|
243
264
|
'lib/internal/util/inspect.js',
|
|
244
|
-
'lib/internal/util/
|
|
265
|
+
'lib/internal/util/inspector.js',
|
|
266
|
+
'lib/internal/util/iterable_weak_map.js',
|
|
245
267
|
'lib/internal/util/parse_args/parse_args.js',
|
|
246
|
-
'lib/internal/
|
|
247
|
-
'lib/internal/
|
|
248
|
-
'lib/internal/
|
|
249
|
-
'lib/internal/
|
|
250
|
-
'lib/internal/
|
|
251
|
-
'lib/internal/
|
|
252
|
-
'lib/internal/
|
|
253
|
-
'lib/internal/
|
|
254
|
-
'lib/internal/
|
|
255
|
-
'lib/internal/
|
|
256
|
-
'lib/internal/
|
|
257
|
-
'lib/internal/main/run_main_module.js',
|
|
258
|
-
'lib/internal/main/print_help.js',
|
|
259
|
-
'lib/internal/main/eval_string.js',
|
|
260
|
-
'lib/internal/main/prof_process.js',
|
|
261
|
-
'lib/internal/main/mksnapshot.js',
|
|
262
|
-
'lib/internal/main/inspect.js',
|
|
263
|
-
'lib/internal/main/test_runner.js',
|
|
264
|
-
'lib/internal/main/check_syntax.js',
|
|
265
|
-
'lib/internal/main/repl.js',
|
|
266
|
-
'lib/internal/repl/history.js',
|
|
267
|
-
'lib/internal/repl/utils.js',
|
|
268
|
-
'lib/internal/repl/await.js',
|
|
269
|
-
'lib/internal/perf/nodetiming.js',
|
|
270
|
-
'lib/internal/perf/observe.js',
|
|
271
|
-
'lib/internal/perf/performance_entry.js',
|
|
272
|
-
'lib/internal/perf/usertiming.js',
|
|
273
|
-
'lib/internal/perf/utils.js',
|
|
274
|
-
'lib/internal/perf/event_loop_delay.js',
|
|
275
|
-
'lib/internal/perf/performance.js',
|
|
276
|
-
'lib/internal/perf/timerify.js',
|
|
277
|
-
'lib/internal/perf/event_loop_utilization.js',
|
|
278
|
-
'lib/internal/perf/resource_timing.js',
|
|
279
|
-
'lib/internal/crypto/keygen.js',
|
|
280
|
-
'lib/internal/crypto/cipher.js',
|
|
281
|
-
'lib/internal/crypto/keys.js',
|
|
282
|
-
'lib/internal/crypto/util.js',
|
|
283
|
-
'lib/internal/crypto/mac.js',
|
|
284
|
-
'lib/internal/crypto/scrypt.js',
|
|
285
|
-
'lib/internal/crypto/sig.js',
|
|
286
|
-
'lib/internal/crypto/rsa.js',
|
|
287
|
-
'lib/internal/crypto/cfrg.js',
|
|
288
|
-
'lib/internal/crypto/x509.js',
|
|
289
|
-
'lib/internal/crypto/hash.js',
|
|
290
|
-
'lib/internal/crypto/hkdf.js',
|
|
291
|
-
'lib/internal/crypto/pbkdf2.js',
|
|
292
|
-
'lib/internal/crypto/diffiehellman.js',
|
|
293
|
-
'lib/internal/crypto/random.js',
|
|
294
|
-
'lib/internal/crypto/certificate.js',
|
|
295
|
-
'lib/internal/crypto/ec.js',
|
|
296
|
-
'lib/internal/crypto/hashnames.js',
|
|
297
|
-
'lib/internal/crypto/aes.js',
|
|
298
|
-
'lib/internal/crypto/webcrypto.js',
|
|
299
|
-
'lib/internal/webstreams/transfer.js',
|
|
268
|
+
'lib/internal/util/parse_args/utils.js',
|
|
269
|
+
'lib/internal/util/types.js',
|
|
270
|
+
'lib/internal/v8/startup_snapshot.js',
|
|
271
|
+
'lib/internal/v8_prof_polyfill.js',
|
|
272
|
+
'lib/internal/v8_prof_processor.js',
|
|
273
|
+
'lib/internal/validators.js',
|
|
274
|
+
'lib/internal/vm/module.js',
|
|
275
|
+
'lib/internal/wasm_web_api.js',
|
|
276
|
+
'lib/internal/watch_mode/files_watcher.js',
|
|
277
|
+
'lib/internal/watchdog.js',
|
|
278
|
+
'lib/internal/webidl.js',
|
|
300
279
|
'lib/internal/webstreams/adapters.js',
|
|
301
|
-
'lib/internal/webstreams/
|
|
302
|
-
'lib/internal/webstreams/writablestream.js',
|
|
280
|
+
'lib/internal/webstreams/compression.js',
|
|
303
281
|
'lib/internal/webstreams/encoding.js',
|
|
304
|
-
'lib/internal/webstreams/transformstream.js',
|
|
305
|
-
'lib/internal/webstreams/readablestream.js',
|
|
306
282
|
'lib/internal/webstreams/queuingstrategies.js',
|
|
307
|
-
'lib/internal/webstreams/
|
|
308
|
-
'lib/internal/
|
|
309
|
-
'lib/internal/
|
|
310
|
-
'lib/internal/
|
|
311
|
-
'lib/internal/
|
|
312
|
-
'lib/internal/
|
|
313
|
-
'lib/internal/
|
|
314
|
-
'lib/internal/
|
|
315
|
-
'lib/
|
|
316
|
-
'lib/
|
|
283
|
+
'lib/internal/webstreams/readablestream.js',
|
|
284
|
+
'lib/internal/webstreams/transfer.js',
|
|
285
|
+
'lib/internal/webstreams/transformstream.js',
|
|
286
|
+
'lib/internal/webstreams/util.js',
|
|
287
|
+
'lib/internal/webstreams/writablestream.js',
|
|
288
|
+
'lib/internal/worker.js',
|
|
289
|
+
'lib/internal/worker/io.js',
|
|
290
|
+
'lib/internal/worker/js_transferable.js',
|
|
291
|
+
'lib/module.js',
|
|
292
|
+
'lib/net.js',
|
|
293
|
+
'lib/os.js',
|
|
294
|
+
'lib/path.js',
|
|
295
|
+
'lib/path/posix.js',
|
|
296
|
+
'lib/path/win32.js',
|
|
297
|
+
'lib/perf_hooks.js',
|
|
298
|
+
'lib/process.js',
|
|
299
|
+
'lib/punycode.js',
|
|
300
|
+
'lib/querystring.js',
|
|
301
|
+
'lib/readline.js',
|
|
302
|
+
'lib/readline/promises.js',
|
|
303
|
+
'lib/repl.js',
|
|
304
|
+
'lib/stream.js',
|
|
305
|
+
'lib/stream/consumers.js',
|
|
306
|
+
'lib/stream/promises.js',
|
|
307
|
+
'lib/stream/web.js',
|
|
308
|
+
'lib/string_decoder.js',
|
|
309
|
+
'lib/sys.js',
|
|
310
|
+
'lib/test.js',
|
|
311
|
+
'lib/timers.js',
|
|
312
|
+
'lib/timers/promises.js',
|
|
313
|
+
'lib/tls.js',
|
|
314
|
+
'lib/trace_events.js',
|
|
315
|
+
'lib/tty.js',
|
|
316
|
+
'lib/url.js',
|
|
317
|
+
'lib/util.js',
|
|
317
318
|
'lib/util/types.js',
|
|
318
|
-
'lib/
|
|
319
|
-
|
|
319
|
+
'lib/v8.js',
|
|
320
|
+
'lib/vm.js',
|
|
321
|
+
'lib/wasi.js',
|
|
322
|
+
'lib/worker_threads.js',
|
|
323
|
+
'lib/zlib.js'],
|
|
324
|
+
'node_module_version': 111,
|
|
320
325
|
'node_no_browser_globals': 'false',
|
|
321
326
|
'node_prefix': '/',
|
|
322
327
|
'node_release_urlbase': 'https://nodejs.org/download/release/',
|
|
@@ -334,8 +339,6 @@
|
|
|
334
339
|
'node_tag': '',
|
|
335
340
|
'node_target_type': 'executable',
|
|
336
341
|
'node_use_bundled_v8': 'true',
|
|
337
|
-
'node_use_dtrace': 'false',
|
|
338
|
-
'node_use_etw': 'false',
|
|
339
342
|
'node_use_node_code_cache': 'true',
|
|
340
343
|
'node_use_node_snapshot': 'true',
|
|
341
344
|
'node_use_openssl': 'true',
|
|
@@ -345,7 +348,7 @@
|
|
|
345
348
|
'openssl_is_fips': 'false',
|
|
346
349
|
'openssl_quic': 'true',
|
|
347
350
|
'ossfuzz': 'false',
|
|
348
|
-
'shlib_suffix': 'so.
|
|
351
|
+
'shlib_suffix': 'so.111',
|
|
349
352
|
'target_arch': 'arm64',
|
|
350
353
|
'v8_enable_31bit_smis_on_64bit_arch': 0,
|
|
351
354
|
'v8_enable_gdbjit': 0,
|