@kungfu-tech/libnode-win32-x64 22.22.3-kf.0 → 22.22.3-kf.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/dist/node/include/acorn_version.h +6 -0
- package/dist/node/include/aliased_buffer-inl.h +244 -0
- package/dist/node/include/aliased_buffer.h +206 -0
- package/dist/node/include/aliased_struct-inl.h +54 -0
- package/dist/node/include/aliased_struct.h +63 -0
- package/dist/node/include/amaro_version.h +6 -0
- package/dist/node/include/async_context_frame.h +33 -0
- package/dist/node/include/async_wrap-inl.h +96 -0
- package/dist/node/include/async_wrap.h +243 -0
- package/dist/node/include/base_object-inl.h +335 -0
- package/dist/node/include/base_object.h +342 -0
- package/dist/node/include/base_object_types.h +74 -0
- package/dist/node/include/blob_serializer_deserializer-inl.h +385 -0
- package/dist/node/include/blob_serializer_deserializer.h +132 -0
- package/dist/node/include/callback_queue-inl.h +97 -0
- package/dist/node/include/callback_queue.h +79 -0
- package/dist/node/include/cares_wrap.h +447 -0
- package/dist/node/include/cjs_module_lexer_version.h +6 -0
- package/dist/node/include/cleanup_queue-inl.h +36 -0
- package/dist/node/include/cleanup_queue.h +79 -0
- package/dist/node/include/compile_cache.h +104 -0
- package/dist/node/include/connect_wrap.h +26 -0
- package/dist/node/include/connection_wrap.h +30 -0
- package/dist/node/include/cppgc/allocation.h +310 -0
- package/dist/node/include/cppgc/common.h +28 -0
- package/dist/node/include/cppgc/cross-thread-persistent.h +466 -0
- package/dist/node/include/cppgc/custom-space.h +97 -0
- package/dist/node/include/cppgc/default-platform.h +67 -0
- package/dist/node/include/cppgc/ephemeron-pair.h +30 -0
- package/dist/node/include/cppgc/explicit-management.h +100 -0
- package/dist/node/include/cppgc/garbage-collected.h +106 -0
- package/dist/node/include/cppgc/heap-consistency.h +309 -0
- package/dist/node/include/cppgc/heap-handle.h +48 -0
- package/dist/node/include/cppgc/heap-state.h +82 -0
- package/dist/node/include/cppgc/heap-statistics.h +120 -0
- package/dist/node/include/cppgc/heap.h +202 -0
- package/dist/node/include/cppgc/internal/api-constants.h +87 -0
- package/dist/node/include/cppgc/internal/atomic-entry-flag.h +48 -0
- package/dist/node/include/cppgc/internal/base-page-handle.h +45 -0
- package/dist/node/include/cppgc/internal/caged-heap-local-data.h +121 -0
- package/dist/node/include/cppgc/internal/caged-heap.h +68 -0
- package/dist/node/include/cppgc/internal/compiler-specific.h +38 -0
- package/dist/node/include/cppgc/internal/finalizer-trait.h +93 -0
- package/dist/node/include/cppgc/internal/gc-info.h +148 -0
- package/dist/node/include/cppgc/internal/logging.h +50 -0
- package/dist/node/include/cppgc/internal/member-storage.h +256 -0
- package/dist/node/include/cppgc/internal/name-trait.h +137 -0
- package/dist/node/include/cppgc/internal/persistent-node.h +214 -0
- package/dist/node/include/cppgc/internal/pointer-policies.h +243 -0
- package/dist/node/include/cppgc/internal/write-barrier.h +487 -0
- package/dist/node/include/cppgc/liveness-broker.h +78 -0
- package/dist/node/include/cppgc/macros.h +35 -0
- package/dist/node/include/cppgc/member.h +629 -0
- package/dist/node/include/cppgc/name-provider.h +65 -0
- package/dist/node/include/cppgc/object-size-trait.h +58 -0
- package/dist/node/include/cppgc/persistent.h +377 -0
- package/dist/node/include/cppgc/platform.h +163 -0
- package/dist/node/include/cppgc/prefinalizer.h +75 -0
- package/dist/node/include/cppgc/process-heap-statistics.h +36 -0
- package/dist/node/include/cppgc/sentinel-pointer.h +39 -0
- package/dist/node/include/cppgc/source-location.h +16 -0
- package/dist/node/include/cppgc/testing.h +106 -0
- package/dist/node/include/cppgc/trace-trait.h +128 -0
- package/dist/node/include/cppgc/type-traits.h +271 -0
- package/dist/node/include/cppgc/visitor.h +504 -0
- package/dist/node/include/crypto/crypto_aes.h +88 -0
- package/dist/node/include/crypto/crypto_bio.h +193 -0
- package/dist/node/include/crypto/crypto_cipher.h +293 -0
- package/dist/node/include/crypto/crypto_clienthello-inl.h +90 -0
- package/dist/node/include/crypto/crypto_clienthello.h +131 -0
- package/dist/node/include/crypto/crypto_common.h +64 -0
- package/dist/node/include/crypto/crypto_context.h +171 -0
- package/dist/node/include/crypto/crypto_dh.h +126 -0
- package/dist/node/include/crypto/crypto_dsa.h +52 -0
- package/dist/node/include/crypto/crypto_ec.h +164 -0
- package/dist/node/include/crypto/crypto_hash.h +91 -0
- package/dist/node/include/crypto/crypto_hkdf.h +61 -0
- package/dist/node/include/crypto/crypto_hmac.h +92 -0
- package/dist/node/include/crypto/crypto_keygen.h +299 -0
- package/dist/node/include/crypto/crypto_keys.h +392 -0
- package/dist/node/include/crypto/crypto_pbkdf2.h +74 -0
- package/dist/node/include/crypto/crypto_random.h +124 -0
- package/dist/node/include/crypto/crypto_rsa.h +136 -0
- package/dist/node/include/crypto/crypto_scrypt.h +85 -0
- package/dist/node/include/crypto/crypto_sig.h +165 -0
- package/dist/node/include/crypto/crypto_spkac.h +21 -0
- package/dist/node/include/crypto/crypto_timing.h +20 -0
- package/dist/node/include/crypto/crypto_tls.h +305 -0
- package/dist/node/include/crypto/crypto_util.h +725 -0
- package/dist/node/include/crypto/crypto_x509.h +140 -0
- package/dist/node/include/dataqueue/queue.h +306 -0
- package/dist/node/include/debug_utils-inl.h +278 -0
- package/dist/node/include/debug_utils.h +196 -0
- package/dist/node/include/diagnosticfilename-inl.h +33 -0
- package/dist/node/include/embedded_data.h +17 -0
- package/dist/node/include/encoding_binding.h +61 -0
- package/dist/node/include/env-inl.h +984 -0
- package/dist/node/include/env.h +1287 -0
- package/dist/node/include/env_properties.h +540 -0
- package/dist/node/include/handle_wrap.h +123 -0
- package/dist/node/include/histogram-inl.h +107 -0
- package/dist/node/include/histogram.h +279 -0
- package/dist/node/include/inspector/io_agent.h +30 -0
- package/dist/node/include/inspector/main_thread_interface.h +116 -0
- package/dist/node/include/inspector/network_agent.h +94 -0
- package/dist/node/include/inspector/network_inspector.h +45 -0
- package/dist/node/include/inspector/network_requests_buffer.h +195 -0
- package/dist/node/include/inspector/network_resource_manager.h +29 -0
- package/dist/node/include/inspector/node_json.h +24 -0
- package/dist/node/include/inspector/node_string.h +101 -0
- package/dist/node/include/inspector/protocol_helper.h +27 -0
- package/dist/node/include/inspector/runtime_agent.h +41 -0
- package/dist/node/include/inspector/target_agent.h +75 -0
- package/dist/node/include/inspector/tracing_agent.h +43 -0
- package/dist/node/include/inspector/worker_agent.h +40 -0
- package/dist/node/include/inspector/worker_inspector.h +124 -0
- package/dist/node/include/inspector_agent.h +165 -0
- package/dist/node/include/inspector_io.h +78 -0
- package/dist/node/include/inspector_profiler.h +149 -0
- package/dist/node/include/inspector_socket.h +60 -0
- package/dist/node/include/inspector_socket_server.h +110 -0
- package/dist/node/include/js_native_api.h +607 -0
- package/dist/node/include/js_native_api_types.h +226 -0
- package/dist/node/include/js_native_api_v8.h +485 -0
- package/dist/node/include/js_native_api_v8_internals.h +45 -0
- package/dist/node/include/js_stream.h +52 -0
- package/dist/node/include/json_utils.h +172 -0
- package/dist/node/include/large_pages/node_large_page.h +34 -0
- package/dist/node/include/libplatform/libplatform-export.h +29 -0
- package/dist/node/include/libplatform/libplatform.h +112 -0
- package/dist/node/include/libplatform/v8-tracing.h +333 -0
- package/dist/node/include/memory_tracker-inl.h +359 -0
- package/dist/node/include/memory_tracker.h +289 -0
- package/dist/node/include/module_wrap.h +216 -0
- package/dist/node/include/node.h +1593 -0
- package/dist/node/include/node_api.h +265 -0
- package/dist/node/include/node_api_internals.h +48 -0
- package/dist/node/include/node_api_types.h +56 -0
- package/dist/node/include/node_binding.h +161 -0
- package/dist/node/include/node_blob.h +159 -0
- package/dist/node/include/node_bob-inl.h +36 -0
- package/dist/node/include/node_bob.h +107 -0
- package/dist/node/include/node_buffer.h +92 -0
- package/dist/node/include/node_builtins.h +220 -0
- package/dist/node/include/node_config_file.h +46 -0
- package/dist/node/include/node_constants.h +82 -0
- package/dist/node/include/node_context_data.h +168 -0
- package/dist/node/include/node_contextify.h +204 -0
- package/dist/node/include/node_crypto.h +56 -0
- package/dist/node/include/node_debug.h +30 -0
- package/dist/node/include/node_dir.h +52 -0
- package/dist/node/include/node_dotenv.h +45 -0
- package/dist/node/include/node_errors.h +380 -0
- package/dist/node/include/node_exit_code.h +54 -0
- package/dist/node/include/node_external_reference.h +165 -0
- package/dist/node/include/node_file-inl.h +406 -0
- package/dist/node/include/node_file.h +537 -0
- package/dist/node/include/node_http2.h +1177 -0
- package/dist/node/include/node_http2_state.h +159 -0
- package/dist/node/include/node_http_common-inl.h +202 -0
- package/dist/node/include/node_http_common.h +535 -0
- package/dist/node/include/node_i18n.h +132 -0
- package/dist/node/include/node_internals.h +483 -0
- package/dist/node/include/node_main_instance.h +67 -0
- package/dist/node/include/node_mem-inl.h +113 -0
- package/dist/node/include/node_mem.h +45 -0
- package/dist/node/include/node_messaging.h +389 -0
- package/dist/node/include/node_metadata.h +164 -0
- package/dist/node/include/node_modules.h +91 -0
- package/dist/node/include/node_mutex.h +323 -0
- package/dist/node/include/node_object_wrap.h +132 -0
- package/dist/node/include/node_options-inl.h +490 -0
- package/dist/node/include/node_options.h +615 -0
- package/dist/node/include/node_perf.h +166 -0
- package/dist/node/include/node_perf_common.h +102 -0
- package/dist/node/include/node_platform.h +238 -0
- package/dist/node/include/node_process-inl.h +26 -0
- package/dist/node/include/node_process.h +112 -0
- package/dist/node/include/node_realm-inl.h +151 -0
- package/dist/node/include/node_realm.h +183 -0
- package/dist/node/include/node_report.h +43 -0
- package/dist/node/include/node_revert.h +82 -0
- package/dist/node/include/node_root_certs.h +3520 -0
- package/dist/node/include/node_sea.h +74 -0
- package/dist/node/include/node_shadow_realm.h +46 -0
- package/dist/node/include/node_snapshot_builder.h +57 -0
- package/dist/node/include/node_snapshotable.h +174 -0
- package/dist/node/include/node_sockaddr-inl.h +257 -0
- package/dist/node/include/node_sockaddr.h +394 -0
- package/dist/node/include/node_sqlite.h +270 -0
- package/dist/node/include/node_stat_watcher.h +73 -0
- package/dist/node/include/node_task_runner.h +92 -0
- package/dist/node/include/node_threadsafe_cow-inl.h +54 -0
- package/dist/node/include/node_threadsafe_cow.h +105 -0
- package/dist/node/include/node_union_bytes.h +81 -0
- package/dist/node/include/node_url.h +96 -0
- package/dist/node/include/node_v8.h +77 -0
- package/dist/node/include/node_v8_platform-inl.h +185 -0
- package/dist/node/include/node_version.h +110 -0
- package/dist/node/include/node_wasi.h +184 -0
- package/dist/node/include/node_wasm_web_api.h +55 -0
- package/dist/node/include/node_watchdog.h +154 -0
- package/dist/node/include/node_webstorage.h +60 -0
- package/dist/node/include/node_worker.h +158 -0
- package/dist/node/include/path.h +33 -0
- package/dist/node/include/permission/addon_permission.h +31 -0
- package/dist/node/include/permission/child_process_permission.h +31 -0
- package/dist/node/include/permission/fs_permission.h +167 -0
- package/dist/node/include/permission/inspector_permission.h +31 -0
- package/dist/node/include/permission/permission.h +138 -0
- package/dist/node/include/permission/permission_base.h +65 -0
- package/dist/node/include/permission/wasi_permission.h +31 -0
- package/dist/node/include/permission/worker_permission.h +31 -0
- package/dist/node/include/pipe_wrap.h +80 -0
- package/dist/node/include/quic/application.h +159 -0
- package/dist/node/include/quic/bindingdata.h +272 -0
- package/dist/node/include/quic/cid.h +127 -0
- package/dist/node/include/quic/data.h +148 -0
- package/dist/node/include/quic/defs.h +245 -0
- package/dist/node/include/quic/endpoint.h +458 -0
- package/dist/node/include/quic/http3.h +15 -0
- package/dist/node/include/quic/logstream.h +81 -0
- package/dist/node/include/quic/packet.h +152 -0
- package/dist/node/include/quic/preferredaddress.h +72 -0
- package/dist/node/include/quic/session.h +443 -0
- package/dist/node/include/quic/sessionticket.h +108 -0
- package/dist/node/include/quic/streams.h +232 -0
- package/dist/node/include/quic/tlscontext.h +227 -0
- package/dist/node/include/quic/tokens.h +256 -0
- package/dist/node/include/quic/transportparams.h +165 -0
- package/dist/node/include/req_wrap-inl.h +171 -0
- package/dist/node/include/req_wrap.h +77 -0
- package/dist/node/include/spawn_sync.h +243 -0
- package/dist/node/include/stream_base-inl.h +173 -0
- package/dist/node/include/stream_base.h +478 -0
- package/dist/node/include/stream_pipe.h +76 -0
- package/dist/node/include/stream_wrap.h +132 -0
- package/dist/node/include/string_bytes.h +113 -0
- package/dist/node/include/string_decoder-inl.h +31 -0
- package/dist/node/include/string_decoder.h +49 -0
- package/dist/node/include/tcp_wrap.h +105 -0
- package/dist/node/include/threadpoolwork-inl.h +70 -0
- package/dist/node/include/timer_wrap-inl.h +32 -0
- package/dist/node/include/timer_wrap.h +85 -0
- package/dist/node/include/timers.h +70 -0
- package/dist/node/include/tracing/agent.h +195 -0
- package/dist/node/include/tracing/node_trace_buffer.h +83 -0
- package/dist/node/include/tracing/node_trace_writer.h +75 -0
- package/dist/node/include/tracing/trace_event.h +722 -0
- package/dist/node/include/tracing/trace_event_common.h +1109 -0
- package/dist/node/include/tracing/traced_value.h +129 -0
- package/dist/node/include/tty_wrap.h +65 -0
- package/dist/node/include/udp_wrap.h +230 -0
- package/dist/node/include/undici_version.h +6 -0
- package/dist/node/include/util-inl.h +700 -0
- package/dist/node/include/util.h +1021 -0
- package/dist/node/include/uv/aix.h +32 -0
- package/dist/node/include/uv/bsd.h +34 -0
- package/dist/node/include/uv/darwin.h +61 -0
- package/dist/node/include/uv/errno.h +483 -0
- package/dist/node/include/uv/linux.h +34 -0
- package/dist/node/include/uv/os390.h +33 -0
- package/dist/node/include/uv/posix.h +31 -0
- package/dist/node/include/uv/sunos.h +44 -0
- package/dist/node/include/uv/threadpool.h +37 -0
- package/dist/node/include/uv/tree.h +521 -0
- package/dist/node/include/uv/unix.h +512 -0
- package/dist/node/include/uv/version.h +43 -0
- package/dist/node/include/uv/win.h +698 -0
- package/dist/node/include/uv.h +1990 -0
- package/dist/node/include/v8-array-buffer.h +525 -0
- package/dist/node/include/v8-callbacks.h +462 -0
- package/dist/node/include/v8-container.h +183 -0
- package/dist/node/include/v8-context.h +485 -0
- package/dist/node/include/v8-cppgc.h +245 -0
- package/dist/node/include/v8-data.h +80 -0
- package/dist/node/include/v8-date.h +48 -0
- package/dist/node/include/v8-debug.h +168 -0
- package/dist/node/include/v8-embedder-heap.h +82 -0
- package/dist/node/include/v8-embedder-state-scope.h +52 -0
- package/dist/node/include/v8-exception.h +223 -0
- package/dist/node/include/v8-extension.h +62 -0
- package/dist/node/include/v8-external.h +37 -0
- package/dist/node/include/v8-fast-api-calls.h +984 -0
- package/dist/node/include/v8-forward.h +82 -0
- package/dist/node/include/v8-function-callback.h +607 -0
- package/dist/node/include/v8-function.h +140 -0
- package/dist/node/include/v8-handle-base.h +137 -0
- package/dist/node/include/v8-initialization.h +289 -0
- package/dist/node/include/v8-inspector-protocol.h +13 -0
- package/dist/node/include/v8-inspector.h +419 -0
- package/dist/node/include/v8-internal.h +1397 -0
- package/dist/node/include/v8-isolate.h +1767 -0
- package/dist/node/include/v8-json.h +47 -0
- package/dist/node/include/v8-local-handle.h +758 -0
- package/dist/node/include/v8-locker.h +138 -0
- package/dist/node/include/v8-maybe.h +160 -0
- package/dist/node/include/v8-memory-span.h +198 -0
- package/dist/node/include/v8-message.h +233 -0
- package/dist/node/include/v8-metrics.h +264 -0
- package/dist/node/include/v8-microtask-queue.h +157 -0
- package/dist/node/include/v8-microtask.h +28 -0
- package/dist/node/include/v8-object.h +824 -0
- package/dist/node/include/v8-persistent-handle.h +582 -0
- package/dist/node/include/v8-platform.h +1358 -0
- package/dist/node/include/v8-primitive-object.h +118 -0
- package/dist/node/include/v8-primitive.h +877 -0
- package/dist/node/include/v8-profiler.h +1302 -0
- package/dist/node/include/v8-promise.h +174 -0
- package/dist/node/include/v8-proxy.h +50 -0
- package/dist/node/include/v8-regexp.h +106 -0
- package/dist/node/include/v8-script.h +904 -0
- package/dist/node/include/v8-snapshot.h +266 -0
- package/dist/node/include/v8-source-location.h +92 -0
- package/dist/node/include/v8-statistics.h +238 -0
- package/dist/node/include/v8-template.h +1297 -0
- package/dist/node/include/v8-traced-handle.h +432 -0
- package/dist/node/include/v8-typed-array.h +390 -0
- package/dist/node/include/v8-unwinder-state.h +31 -0
- package/dist/node/include/v8-unwinder.h +132 -0
- package/dist/node/include/v8-util.h +665 -0
- package/dist/node/include/v8-value-serializer-version.h +24 -0
- package/dist/node/include/v8-value-serializer.h +316 -0
- package/dist/node/include/v8-value.h +655 -0
- package/dist/node/include/v8-version-string.h +38 -0
- package/dist/node/include/v8-version.h +20 -0
- package/dist/node/include/v8-wasm-trap-handler-posix.h +31 -0
- package/dist/node/include/v8-wasm-trap-handler-win.h +28 -0
- package/dist/node/include/v8-wasm.h +201 -0
- package/dist/node/include/v8-weak-callback-info.h +80 -0
- package/dist/node/include/v8.h +88 -0
- package/dist/node/include/v8config.h +981 -0
- package/dist/node/include/zlib_version.h +6 -0
- package/dist/node/libnode.dll +0 -0
- package/dist/node/libnode.lib +0 -0
- package/dist/node/libnodebuildinfo.json +10 -0
- package/dist/node/link_node.lib +0 -0
- package/dist/node/link_node.node +0 -0
- package/libnode.release.json +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
#ifndef SRC_ENV_PROPERTIES_H_
|
|
2
|
+
#define SRC_ENV_PROPERTIES_H_
|
|
3
|
+
|
|
4
|
+
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
5
|
+
|
|
6
|
+
// PER_ISOLATE_* macros: We have a lot of per-isolate properties
|
|
7
|
+
// and adding and maintaining their getters and setters by hand would be
|
|
8
|
+
// difficult so let's make the preprocessor generate them for us.
|
|
9
|
+
//
|
|
10
|
+
// In each macro, `V` is expected to be the name of a macro or function which
|
|
11
|
+
// accepts the number of arguments provided in each tuple in the macro body,
|
|
12
|
+
// typically two. The named function will be invoked against each tuple.
|
|
13
|
+
//
|
|
14
|
+
// Make sure that any macro V defined for use with the PER_ISOLATE_* macros is
|
|
15
|
+
// undefined again after use.
|
|
16
|
+
|
|
17
|
+
// Private symbols are per-isolate primitives but Environment proxies them
|
|
18
|
+
// for the sake of convenience. Strings should be ASCII-only and have a
|
|
19
|
+
// "node:" prefix to avoid name clashes with third-party code.
|
|
20
|
+
#define PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES(V) \
|
|
21
|
+
V(arrow_message_private_symbol, "node:arrowMessage") \
|
|
22
|
+
V(contextify_context_private_symbol, "node:contextify:context") \
|
|
23
|
+
V(decorated_private_symbol, "node:decorated") \
|
|
24
|
+
V(transfer_mode_private_symbol, "node:transfer_mode") \
|
|
25
|
+
V(host_defined_option_symbol, "node:host_defined_option_symbol") \
|
|
26
|
+
V(js_transferable_wrapper_private_symbol, "node:js_transferable_wrapper") \
|
|
27
|
+
V(entry_point_module_private_symbol, "node:entry_point_module") \
|
|
28
|
+
V(entry_point_promise_private_symbol, "node:entry_point_promise") \
|
|
29
|
+
V(module_source_private_symbol, "node:module_source") \
|
|
30
|
+
V(module_export_names_private_symbol, "node:module_export_names") \
|
|
31
|
+
V(module_circular_visited_private_symbol, "node:module_circular_visited") \
|
|
32
|
+
V(module_export_private_symbol, "node:module_export") \
|
|
33
|
+
V(module_first_parent_private_symbol, "node:module_first_parent") \
|
|
34
|
+
V(module_last_parent_private_symbol, "node:module_last_parent") \
|
|
35
|
+
V(napi_type_tag, "node:napi:type_tag") \
|
|
36
|
+
V(napi_wrapper, "node:napi:wrapper") \
|
|
37
|
+
V(untransferable_object_private_symbol, "node:untransferableObject") \
|
|
38
|
+
V(exit_info_private_symbol, "node:exit_info_private_symbol") \
|
|
39
|
+
V(promise_trace_id, "node:promise_trace_id") \
|
|
40
|
+
V(source_map_data_private_symbol, "node:source_map_data_private_symbol")
|
|
41
|
+
|
|
42
|
+
// Symbols are per-isolate primitives but Environment proxies them
|
|
43
|
+
// for the sake of convenience.
|
|
44
|
+
#define PER_ISOLATE_SYMBOL_PROPERTIES(V) \
|
|
45
|
+
V(fs_use_promises_symbol, "fs_use_promises_symbol") \
|
|
46
|
+
V(async_id_symbol, "async_id_symbol") \
|
|
47
|
+
V(constructor_key_symbol, "constructor_key_symbol") \
|
|
48
|
+
V(handle_onclose_symbol, "handle_onclose") \
|
|
49
|
+
V(no_message_symbol, "no_message_symbol") \
|
|
50
|
+
V(messaging_deserialize_symbol, "messaging_deserialize_symbol") \
|
|
51
|
+
V(imported_cjs_symbol, "imported_cjs_symbol") \
|
|
52
|
+
V(messaging_transfer_symbol, "messaging_transfer_symbol") \
|
|
53
|
+
V(messaging_clone_symbol, "messaging_clone_symbol") \
|
|
54
|
+
V(messaging_transfer_list_symbol, "messaging_transfer_list_symbol") \
|
|
55
|
+
V(oninit_symbol, "oninit") \
|
|
56
|
+
V(owner_symbol, "owner_symbol") \
|
|
57
|
+
V(onpskexchange_symbol, "onpskexchange") \
|
|
58
|
+
V(resource_symbol, "resource_symbol") \
|
|
59
|
+
V(trigger_async_id_symbol, "trigger_async_id_symbol") \
|
|
60
|
+
V(source_text_module_default_hdo, "source_text_module_default_hdo") \
|
|
61
|
+
V(vm_context_no_contextify, "vm_context_no_contextify") \
|
|
62
|
+
V(vm_dynamic_import_default_internal, "vm_dynamic_import_default_internal") \
|
|
63
|
+
V(vm_dynamic_import_main_context_default, \
|
|
64
|
+
"vm_dynamic_import_main_context_default") \
|
|
65
|
+
V(vm_dynamic_import_missing_flag, "vm_dynamic_import_missing_flag") \
|
|
66
|
+
V(vm_dynamic_import_no_callback, "vm_dynamic_import_no_callback")
|
|
67
|
+
|
|
68
|
+
// Strings are per-isolate primitives but Environment proxies them
|
|
69
|
+
// for the sake of convenience. Strings should be ASCII-only.
|
|
70
|
+
#define PER_ISOLATE_STRING_PROPERTIES(V) \
|
|
71
|
+
V(__filename_string, "__filename") \
|
|
72
|
+
V(__dirname_string, "__dirname") \
|
|
73
|
+
V(ack_string, "ack") \
|
|
74
|
+
V(address_string, "address") \
|
|
75
|
+
V(aliases_string, "aliases") \
|
|
76
|
+
V(allow_bare_named_params_string, "allowBareNamedParameters") \
|
|
77
|
+
V(allow_unknown_named_params_string, "allowUnknownNamedParameters") \
|
|
78
|
+
V(alpn_callback_string, "ALPNCallback") \
|
|
79
|
+
V(args_string, "args") \
|
|
80
|
+
V(asn1curve_string, "asn1Curve") \
|
|
81
|
+
V(async_ids_stack_string, "async_ids_stack") \
|
|
82
|
+
V(attributes_string, "attributes") \
|
|
83
|
+
V(backup_string, "backup") \
|
|
84
|
+
V(base_string, "base") \
|
|
85
|
+
V(bits_string, "bits") \
|
|
86
|
+
V(block_list_string, "blockList") \
|
|
87
|
+
V(buffer_string, "buffer") \
|
|
88
|
+
V(bytes_parsed_string, "bytesParsed") \
|
|
89
|
+
V(bytes_read_string, "bytesRead") \
|
|
90
|
+
V(bytes_written_string, "bytesWritten") \
|
|
91
|
+
V(ca_string, "ca") \
|
|
92
|
+
V(cached_data_produced_string, "cachedDataProduced") \
|
|
93
|
+
V(cached_data_rejected_string, "cachedDataRejected") \
|
|
94
|
+
V(cached_data_string, "cachedData") \
|
|
95
|
+
V(cache_key_string, "cacheKey") \
|
|
96
|
+
V(cert_usage_string, "certUsage") \
|
|
97
|
+
V(change_string, "change") \
|
|
98
|
+
V(changes_string, "changes") \
|
|
99
|
+
V(channel_string, "channel") \
|
|
100
|
+
V(chunks_sent_since_last_write_string, "chunksSentSinceLastWrite") \
|
|
101
|
+
V(clone_unsupported_type_str, "Cannot clone object of unsupported type.") \
|
|
102
|
+
V(clone_transfer_needed_str, \
|
|
103
|
+
"Object that needs transfer was found in message but not listed in " \
|
|
104
|
+
"transferList") \
|
|
105
|
+
V(clone_untransferable_str, "Found invalid value in transferList.") \
|
|
106
|
+
V(code_string, "code") \
|
|
107
|
+
V(column_number_string, "columnNumber") \
|
|
108
|
+
V(column_string, "column") \
|
|
109
|
+
V(commonjs_string, "commonjs") \
|
|
110
|
+
V(config_string, "config") \
|
|
111
|
+
V(constants_string, "constants") \
|
|
112
|
+
V(crypto_dh_string, "dh") \
|
|
113
|
+
V(crypto_dsa_string, "dsa") \
|
|
114
|
+
V(crypto_ec_string, "ec") \
|
|
115
|
+
V(crypto_ed25519_string, "ed25519") \
|
|
116
|
+
V(crypto_ed448_string, "ed448") \
|
|
117
|
+
V(crypto_x25519_string, "x25519") \
|
|
118
|
+
V(crypto_x448_string, "x448") \
|
|
119
|
+
V(crypto_rsa_string, "rsa") \
|
|
120
|
+
V(crypto_rsa_pss_string, "rsa-pss") \
|
|
121
|
+
V(cwd_string, "cwd") \
|
|
122
|
+
V(data_string, "data") \
|
|
123
|
+
V(database_string, "database") \
|
|
124
|
+
V(default_is_true_string, "defaultIsTrue") \
|
|
125
|
+
V(deserialize_info_string, "deserializeInfo") \
|
|
126
|
+
V(dest_string, "dest") \
|
|
127
|
+
V(destroyed_string, "destroyed") \
|
|
128
|
+
V(detached_string, "detached") \
|
|
129
|
+
V(dh_string, "DH") \
|
|
130
|
+
V(dirname_string, "dirname") \
|
|
131
|
+
V(divisor_length_string, "divisorLength") \
|
|
132
|
+
V(dns_a_string, "A") \
|
|
133
|
+
V(dns_aaaa_string, "AAAA") \
|
|
134
|
+
V(dns_caa_string, "CAA") \
|
|
135
|
+
V(dns_critical_string, "critical") \
|
|
136
|
+
V(dns_cname_string, "CNAME") \
|
|
137
|
+
V(dns_mx_string, "MX") \
|
|
138
|
+
V(dns_naptr_string, "NAPTR") \
|
|
139
|
+
V(dns_ns_string, "NS") \
|
|
140
|
+
V(dns_ptr_string, "PTR") \
|
|
141
|
+
V(dns_soa_string, "SOA") \
|
|
142
|
+
V(dns_srv_string, "SRV") \
|
|
143
|
+
V(dns_tlsa_string, "TLSA") \
|
|
144
|
+
V(dns_txt_string, "TXT") \
|
|
145
|
+
V(done_string, "done") \
|
|
146
|
+
V(duration_string, "duration") \
|
|
147
|
+
V(ecdh_string, "ECDH") \
|
|
148
|
+
V(emit_string, "emit") \
|
|
149
|
+
V(emit_warning_string, "emitWarning") \
|
|
150
|
+
V(empty_object_string, "{}") \
|
|
151
|
+
V(encoding_string, "encoding") \
|
|
152
|
+
V(entries_string, "entries") \
|
|
153
|
+
V(entry_type_string, "entryType") \
|
|
154
|
+
V(env_pairs_string, "envPairs") \
|
|
155
|
+
V(env_var_settings_string, "envVarSettings") \
|
|
156
|
+
V(err_sqlite_error_string, "ERR_SQLITE_ERROR") \
|
|
157
|
+
V(errcode_string, "errcode") \
|
|
158
|
+
V(errno_string, "errno") \
|
|
159
|
+
V(error_string, "error") \
|
|
160
|
+
V(errstr_string, "errstr") \
|
|
161
|
+
V(events_waiting, "eventsWaiting") \
|
|
162
|
+
V(events, "events") \
|
|
163
|
+
V(exchange_string, "exchange") \
|
|
164
|
+
V(expire_string, "expire") \
|
|
165
|
+
V(exponent_string, "exponent") \
|
|
166
|
+
V(exports_string, "exports") \
|
|
167
|
+
V(ext_key_usage_string, "ext_key_usage") \
|
|
168
|
+
V(external_stream_string, "_externalStream") \
|
|
169
|
+
V(family_string, "family") \
|
|
170
|
+
V(fatal_exception_string, "_fatalException") \
|
|
171
|
+
V(fd_string, "fd") \
|
|
172
|
+
V(fields_string, "fields") \
|
|
173
|
+
V(file_string, "file") \
|
|
174
|
+
V(filename_string, "filename") \
|
|
175
|
+
V(filter_string, "filter") \
|
|
176
|
+
V(fingerprint256_string, "fingerprint256") \
|
|
177
|
+
V(fingerprint512_string, "fingerprint512") \
|
|
178
|
+
V(fingerprint_string, "fingerprint") \
|
|
179
|
+
V(flags_string, "flags") \
|
|
180
|
+
V(flowlabel_string, "flowlabel") \
|
|
181
|
+
V(fragment_string, "fragment") \
|
|
182
|
+
V(frames_received_string, "framesReceived") \
|
|
183
|
+
V(frames_sent_string, "framesSent") \
|
|
184
|
+
V(function_name_string, "functionName") \
|
|
185
|
+
V(function_string, "function") \
|
|
186
|
+
V(get_string, "get") \
|
|
187
|
+
V(get_data_clone_error_string, "_getDataCloneError") \
|
|
188
|
+
V(get_shared_array_buffer_id_string, "_getSharedArrayBufferId") \
|
|
189
|
+
V(gid_string, "gid") \
|
|
190
|
+
V(h2_string, "h2") \
|
|
191
|
+
V(handle_string, "handle") \
|
|
192
|
+
V(hash_algorithm_string, "hashAlgorithm") \
|
|
193
|
+
V(help_text_string, "helpText") \
|
|
194
|
+
V(homedir_string, "homedir") \
|
|
195
|
+
V(host_string, "host") \
|
|
196
|
+
V(hostmaster_string, "hostmaster") \
|
|
197
|
+
V(hostname_string, "hostname") \
|
|
198
|
+
V(href_string, "href") \
|
|
199
|
+
V(http_1_1_string, "http/1.1") \
|
|
200
|
+
V(id_string, "id") \
|
|
201
|
+
V(identity_string, "identity") \
|
|
202
|
+
V(ignore_string, "ignore") \
|
|
203
|
+
V(infoaccess_string, "infoAccess") \
|
|
204
|
+
V(inherit_string, "inherit") \
|
|
205
|
+
V(input_string, "input") \
|
|
206
|
+
V(internal_binding_string, "internalBinding") \
|
|
207
|
+
V(internal_string, "internal") \
|
|
208
|
+
V(inverse_string, "inverse") \
|
|
209
|
+
V(ipv4_string, "IPv4") \
|
|
210
|
+
V(ipv6_string, "IPv6") \
|
|
211
|
+
V(isclosing_string, "isClosing") \
|
|
212
|
+
V(isfinished_string, "isFinished") \
|
|
213
|
+
V(issuer_string, "issuer") \
|
|
214
|
+
V(issuercert_string, "issuerCertificate") \
|
|
215
|
+
V(iterator_string, "Iterator") \
|
|
216
|
+
V(jwk_crv_string, "crv") \
|
|
217
|
+
V(jwk_d_string, "d") \
|
|
218
|
+
V(jwk_dp_string, "dp") \
|
|
219
|
+
V(jwk_dq_string, "dq") \
|
|
220
|
+
V(jwk_dsa_string, "DSA") \
|
|
221
|
+
V(jwk_e_string, "e") \
|
|
222
|
+
V(jwk_ec_string, "EC") \
|
|
223
|
+
V(jwk_g_string, "g") \
|
|
224
|
+
V(jwk_k_string, "k") \
|
|
225
|
+
V(jwk_p_string, "p") \
|
|
226
|
+
V(jwk_q_string, "q") \
|
|
227
|
+
V(jwk_qi_string, "qi") \
|
|
228
|
+
V(jwk_kty_string, "kty") \
|
|
229
|
+
V(jwk_n_string, "n") \
|
|
230
|
+
V(jwk_oct_string, "oct") \
|
|
231
|
+
V(jwk_okp_string, "OKP") \
|
|
232
|
+
V(jwk_rsa_string, "RSA") \
|
|
233
|
+
V(jwk_x_string, "x") \
|
|
234
|
+
V(jwk_y_string, "y") \
|
|
235
|
+
V(kill_signal_string, "killSignal") \
|
|
236
|
+
V(kind_string, "kind") \
|
|
237
|
+
V(last_insert_rowid_string, "lastInsertRowid") \
|
|
238
|
+
V(length_string, "length") \
|
|
239
|
+
V(library_string, "library") \
|
|
240
|
+
V(line_number_string, "lineNumber") \
|
|
241
|
+
V(loop_count, "loopCount") \
|
|
242
|
+
V(mac_string, "mac") \
|
|
243
|
+
V(match_string, "match") \
|
|
244
|
+
V(max_buffer_string, "maxBuffer") \
|
|
245
|
+
V(max_concurrent_streams_string, "maxConcurrentStreams") \
|
|
246
|
+
V(message_port_constructor_string, "MessagePort") \
|
|
247
|
+
V(message_port_string, "messagePort") \
|
|
248
|
+
V(message_string, "message") \
|
|
249
|
+
V(messageerror_string, "messageerror") \
|
|
250
|
+
V(mgf1_hash_algorithm_string, "mgf1HashAlgorithm") \
|
|
251
|
+
V(minttl_string, "minttl") \
|
|
252
|
+
V(module_string, "module") \
|
|
253
|
+
V(modulus_string, "modulus") \
|
|
254
|
+
V(modulus_length_string, "modulusLength") \
|
|
255
|
+
V(name_string, "name") \
|
|
256
|
+
V(named_curve_string, "namedCurve") \
|
|
257
|
+
V(netmask_string, "netmask") \
|
|
258
|
+
V(next_string, "next") \
|
|
259
|
+
V(nistcurve_string, "nistCurve") \
|
|
260
|
+
V(node_string, "node") \
|
|
261
|
+
V(nsname_string, "nsname") \
|
|
262
|
+
V(num_cols_string, "num_cols") \
|
|
263
|
+
V(object_string, "Object") \
|
|
264
|
+
V(ocsp_request_string, "OCSPRequest") \
|
|
265
|
+
V(oncertcb_string, "oncertcb") \
|
|
266
|
+
V(onchange_string, "onchange") \
|
|
267
|
+
V(onclienthello_string, "onclienthello") \
|
|
268
|
+
V(oncomplete_string, "oncomplete") \
|
|
269
|
+
V(onconflict_string, "onConflict") \
|
|
270
|
+
V(onconnection_string, "onconnection") \
|
|
271
|
+
V(ondone_string, "ondone") \
|
|
272
|
+
V(onerror_string, "onerror") \
|
|
273
|
+
V(onexit_string, "onexit") \
|
|
274
|
+
V(onhandshakedone_string, "onhandshakedone") \
|
|
275
|
+
V(onhandshakestart_string, "onhandshakestart") \
|
|
276
|
+
V(onkeylog_string, "onkeylog") \
|
|
277
|
+
V(onmessage_string, "onmessage") \
|
|
278
|
+
V(onnewsession_string, "onnewsession") \
|
|
279
|
+
V(onocspresponse_string, "onocspresponse") \
|
|
280
|
+
V(onreadstart_string, "onreadstart") \
|
|
281
|
+
V(onreadstop_string, "onreadstop") \
|
|
282
|
+
V(onshutdown_string, "onshutdown") \
|
|
283
|
+
V(onsignal_string, "onsignal") \
|
|
284
|
+
V(onunpipe_string, "onunpipe") \
|
|
285
|
+
V(onwrite_string, "onwrite") \
|
|
286
|
+
V(ongracefulclosecomplete_string, "ongracefulclosecomplete") \
|
|
287
|
+
V(openssl_error_stack, "opensslErrorStack") \
|
|
288
|
+
V(options_string, "options") \
|
|
289
|
+
V(order_string, "order") \
|
|
290
|
+
V(original_string, "original") \
|
|
291
|
+
V(output_string, "output") \
|
|
292
|
+
V(overlapped_string, "overlapped") \
|
|
293
|
+
V(parse_error_string, "Parse Error") \
|
|
294
|
+
V(password_string, "password") \
|
|
295
|
+
V(path_string, "path") \
|
|
296
|
+
V(pending_handle_string, "pendingHandle") \
|
|
297
|
+
V(permission_string, "permission") \
|
|
298
|
+
V(pid_string, "pid") \
|
|
299
|
+
V(ping_rtt_string, "pingRTT") \
|
|
300
|
+
V(pipe_source_string, "pipeSource") \
|
|
301
|
+
V(pipe_string, "pipe") \
|
|
302
|
+
V(pipe_target_string, "pipeTarget") \
|
|
303
|
+
V(port1_string, "port1") \
|
|
304
|
+
V(port2_string, "port2") \
|
|
305
|
+
V(port_string, "port") \
|
|
306
|
+
V(preference_string, "preference") \
|
|
307
|
+
V(primordials_string, "primordials") \
|
|
308
|
+
V(priority_string, "priority") \
|
|
309
|
+
V(process_string, "process") \
|
|
310
|
+
V(progress_string, "progress") \
|
|
311
|
+
V(promise_string, "promise") \
|
|
312
|
+
V(protocol_string, "protocol") \
|
|
313
|
+
V(prototype_string, "prototype") \
|
|
314
|
+
V(psk_string, "psk") \
|
|
315
|
+
V(pubkey_string, "pubkey") \
|
|
316
|
+
V(public_exponent_string, "publicExponent") \
|
|
317
|
+
V(query_string, "query") \
|
|
318
|
+
V(rate_string, "rate") \
|
|
319
|
+
V(raw_string, "raw") \
|
|
320
|
+
V(read_host_object_string, "_readHostObject") \
|
|
321
|
+
V(readable_string, "readable") \
|
|
322
|
+
V(read_bigints_string, "readBigInts") \
|
|
323
|
+
V(reason_string, "reason") \
|
|
324
|
+
V(refresh_string, "refresh") \
|
|
325
|
+
V(regexp_string, "regexp") \
|
|
326
|
+
V(remaining_pages_string, "remainingPages") \
|
|
327
|
+
V(rename_string, "rename") \
|
|
328
|
+
V(replacement_string, "replacement") \
|
|
329
|
+
V(required_module_facade_url_string, \
|
|
330
|
+
"node:internal/require_module_default_facade") \
|
|
331
|
+
V(required_module_facade_source_string, \
|
|
332
|
+
"export * from 'original'; export { default } from 'original'; export " \
|
|
333
|
+
"const __esModule = true;") \
|
|
334
|
+
V(require_string, "require") \
|
|
335
|
+
V(resolve_string, "resolve") \
|
|
336
|
+
V(resource_string, "resource") \
|
|
337
|
+
V(result_string, "result") \
|
|
338
|
+
V(retry_string, "retry") \
|
|
339
|
+
V(return_arrays_string, "returnArrays") \
|
|
340
|
+
V(return_string, "return") \
|
|
341
|
+
V(salt_length_string, "saltLength") \
|
|
342
|
+
V(scheme_string, "scheme") \
|
|
343
|
+
V(scopeid_string, "scopeid") \
|
|
344
|
+
V(script_id_string, "scriptId") \
|
|
345
|
+
V(script_name_string, "scriptName") \
|
|
346
|
+
V(selector_string, "selector") \
|
|
347
|
+
V(serial_number_string, "serialNumber") \
|
|
348
|
+
V(serial_string, "serial") \
|
|
349
|
+
V(servername_string, "servername") \
|
|
350
|
+
V(service_string, "service") \
|
|
351
|
+
V(session_id_string, "sessionId") \
|
|
352
|
+
V(set_string, "set") \
|
|
353
|
+
V(shell_string, "shell") \
|
|
354
|
+
V(signal_string, "signal") \
|
|
355
|
+
V(sink_string, "sink") \
|
|
356
|
+
V(size_string, "size") \
|
|
357
|
+
V(sni_context_err_string, "Invalid SNI context") \
|
|
358
|
+
V(sni_context_string, "sni_context") \
|
|
359
|
+
V(source_string, "source") \
|
|
360
|
+
V(source_map_url_string, "sourceMapURL") \
|
|
361
|
+
V(source_url_string, "sourceURL") \
|
|
362
|
+
V(specifier_string, "specifier") \
|
|
363
|
+
V(stack_string, "stack") \
|
|
364
|
+
V(standard_name_string, "standardName") \
|
|
365
|
+
V(start_string, "start") \
|
|
366
|
+
V(start_time_string, "startTime") \
|
|
367
|
+
V(state_string, "state") \
|
|
368
|
+
V(statement_string, "statement") \
|
|
369
|
+
V(stats_string, "stats") \
|
|
370
|
+
V(status_string, "status") \
|
|
371
|
+
V(stdio_string, "stdio") \
|
|
372
|
+
V(step_string, "step") \
|
|
373
|
+
V(stream_average_duration_string, "streamAverageDuration") \
|
|
374
|
+
V(stream_count_string, "streamCount") \
|
|
375
|
+
V(subject_string, "subject") \
|
|
376
|
+
V(subjectaltname_string, "subjectaltname") \
|
|
377
|
+
V(synthetic_string, "synthetic") \
|
|
378
|
+
V(syscall_string, "syscall") \
|
|
379
|
+
V(table_string, "table") \
|
|
380
|
+
V(target_string, "target") \
|
|
381
|
+
V(thread_id_string, "threadId") \
|
|
382
|
+
V(thread_name_string, "threadName") \
|
|
383
|
+
V(ticketkeycallback_string, "onticketkeycallback") \
|
|
384
|
+
V(timeout_string, "timeout") \
|
|
385
|
+
V(time_to_first_byte_string, "timeToFirstByte") \
|
|
386
|
+
V(time_to_first_byte_sent_string, "timeToFirstByteSent") \
|
|
387
|
+
V(time_to_first_header_string, "timeToFirstHeader") \
|
|
388
|
+
V(tls_ticket_string, "tlsTicket") \
|
|
389
|
+
V(total_pages_string, "totalPages") \
|
|
390
|
+
V(transfer_string, "transfer") \
|
|
391
|
+
V(transfer_unsupported_type_str, \
|
|
392
|
+
"Cannot transfer object of unsupported type.") \
|
|
393
|
+
V(ttl_string, "ttl") \
|
|
394
|
+
V(type_string, "type") \
|
|
395
|
+
V(uid_string, "uid") \
|
|
396
|
+
V(unknown_string, "<unknown>") \
|
|
397
|
+
V(url_special_ftp_string, "ftp:") \
|
|
398
|
+
V(url_special_file_string, "file:") \
|
|
399
|
+
V(url_special_http_string, "http:") \
|
|
400
|
+
V(url_special_https_string, "https:") \
|
|
401
|
+
V(url_special_ws_string, "ws:") \
|
|
402
|
+
V(url_special_wss_string, "wss:") \
|
|
403
|
+
V(url_string, "url") \
|
|
404
|
+
V(username_string, "username") \
|
|
405
|
+
V(valid_from_string, "valid_from") \
|
|
406
|
+
V(valid_to_string, "valid_to") \
|
|
407
|
+
V(value_string, "value") \
|
|
408
|
+
V(verify_error_string, "verifyError") \
|
|
409
|
+
V(version_string, "version") \
|
|
410
|
+
V(weight_string, "weight") \
|
|
411
|
+
V(windows_hide_string, "windowsHide") \
|
|
412
|
+
V(windows_verbatim_arguments_string, "windowsVerbatimArguments") \
|
|
413
|
+
V(wrap_string, "wrap") \
|
|
414
|
+
V(writable_string, "writable") \
|
|
415
|
+
V(write_host_object_string, "_writeHostObject") \
|
|
416
|
+
V(write_queue_size_string, "writeQueueSize") \
|
|
417
|
+
V(x_forwarded_string, "x-forwarded-for")
|
|
418
|
+
|
|
419
|
+
#define PER_ISOLATE_TEMPLATE_PROPERTIES(V) \
|
|
420
|
+
V(async_wrap_ctor_template, v8::FunctionTemplate) \
|
|
421
|
+
V(async_wrap_object_ctor_template, v8::FunctionTemplate) \
|
|
422
|
+
V(binding_data_default_template, v8::ObjectTemplate) \
|
|
423
|
+
V(blob_constructor_template, v8::FunctionTemplate) \
|
|
424
|
+
V(blob_reader_constructor_template, v8::FunctionTemplate) \
|
|
425
|
+
V(blocklist_constructor_template, v8::FunctionTemplate) \
|
|
426
|
+
V(contextify_global_template, v8::ObjectTemplate) \
|
|
427
|
+
V(contextify_wrapper_template, v8::ObjectTemplate) \
|
|
428
|
+
V(crypto_key_object_handle_constructor, v8::FunctionTemplate) \
|
|
429
|
+
V(env_proxy_template, v8::ObjectTemplate) \
|
|
430
|
+
V(env_proxy_ctor_template, v8::FunctionTemplate) \
|
|
431
|
+
V(dir_instance_template, v8::ObjectTemplate) \
|
|
432
|
+
V(fd_constructor_template, v8::ObjectTemplate) \
|
|
433
|
+
V(fdclose_constructor_template, v8::ObjectTemplate) \
|
|
434
|
+
V(fdentry_constructor_template, v8::FunctionTemplate) \
|
|
435
|
+
V(filehandlereadwrap_template, v8::ObjectTemplate) \
|
|
436
|
+
V(fsreqpromise_constructor_template, v8::ObjectTemplate) \
|
|
437
|
+
V(handle_wrap_ctor_template, v8::FunctionTemplate) \
|
|
438
|
+
V(histogram_ctor_template, v8::FunctionTemplate) \
|
|
439
|
+
V(http2settings_constructor_template, v8::ObjectTemplate) \
|
|
440
|
+
V(http2stream_constructor_template, v8::ObjectTemplate) \
|
|
441
|
+
V(http2ping_constructor_template, v8::ObjectTemplate) \
|
|
442
|
+
V(i18n_converter_template, v8::ObjectTemplate) \
|
|
443
|
+
V(intervalhistogram_constructor_template, v8::FunctionTemplate) \
|
|
444
|
+
V(js_transferable_constructor_template, v8::FunctionTemplate) \
|
|
445
|
+
V(libuv_stream_wrap_ctor_template, v8::FunctionTemplate) \
|
|
446
|
+
V(message_port_constructor_template, v8::FunctionTemplate) \
|
|
447
|
+
V(module_wrap_constructor_template, v8::FunctionTemplate) \
|
|
448
|
+
V(microtask_queue_ctor_template, v8::FunctionTemplate) \
|
|
449
|
+
V(pipe_constructor_template, v8::FunctionTemplate) \
|
|
450
|
+
V(promise_wrap_template, v8::ObjectTemplate) \
|
|
451
|
+
V(sab_lifetimepartner_constructor_template, v8::FunctionTemplate) \
|
|
452
|
+
V(script_context_constructor_template, v8::FunctionTemplate) \
|
|
453
|
+
V(secure_context_constructor_template, v8::FunctionTemplate) \
|
|
454
|
+
V(shutdown_wrap_template, v8::ObjectTemplate) \
|
|
455
|
+
V(socketaddress_constructor_template, v8::FunctionTemplate) \
|
|
456
|
+
V(sqlite_statement_sync_constructor_template, v8::FunctionTemplate) \
|
|
457
|
+
V(sqlite_statement_sync_iterator_constructor_template, v8::FunctionTemplate) \
|
|
458
|
+
V(sqlite_session_constructor_template, v8::FunctionTemplate) \
|
|
459
|
+
V(streambaseentry_ctor_template, v8::FunctionTemplate) \
|
|
460
|
+
V(streambaseoutputstream_constructor_template, v8::ObjectTemplate) \
|
|
461
|
+
V(streamentry_ctor_template, v8::FunctionTemplate) \
|
|
462
|
+
V(streamentry_opaque_ctor_template, v8::FunctionTemplate) \
|
|
463
|
+
V(qlogoutputstream_constructor_template, v8::ObjectTemplate) \
|
|
464
|
+
V(tcp_constructor_template, v8::FunctionTemplate) \
|
|
465
|
+
V(tty_constructor_template, v8::FunctionTemplate) \
|
|
466
|
+
V(write_wrap_template, v8::ObjectTemplate) \
|
|
467
|
+
V(worker_cpu_profile_taker_template, v8::ObjectTemplate) \
|
|
468
|
+
V(worker_cpu_usage_taker_template, v8::ObjectTemplate) \
|
|
469
|
+
V(worker_heap_snapshot_taker_template, v8::ObjectTemplate) \
|
|
470
|
+
V(worker_heap_statistics_taker_template, v8::ObjectTemplate) \
|
|
471
|
+
V(x509_constructor_template, v8::FunctionTemplate)
|
|
472
|
+
|
|
473
|
+
#define PER_REALM_STRONG_PERSISTENT_VALUES(V) \
|
|
474
|
+
V(async_hooks_after_function, v8::Function) \
|
|
475
|
+
V(async_hooks_before_function, v8::Function) \
|
|
476
|
+
V(async_hooks_callback_trampoline, v8::Function) \
|
|
477
|
+
V(async_hooks_binding, v8::Object) \
|
|
478
|
+
V(async_hooks_destroy_function, v8::Function) \
|
|
479
|
+
V(async_hooks_init_function, v8::Function) \
|
|
480
|
+
V(async_hooks_promise_resolve_function, v8::Function) \
|
|
481
|
+
V(buffer_prototype_object, v8::Object) \
|
|
482
|
+
V(crypto_key_object_constructor, v8::Function) \
|
|
483
|
+
V(crypto_key_object_private_constructor, v8::Function) \
|
|
484
|
+
V(crypto_key_object_public_constructor, v8::Function) \
|
|
485
|
+
V(crypto_key_object_secret_constructor, v8::Function) \
|
|
486
|
+
V(domexception_function, v8::Function) \
|
|
487
|
+
V(enhance_fatal_stack_after_inspector, v8::Function) \
|
|
488
|
+
V(enhance_fatal_stack_before_inspector, v8::Function) \
|
|
489
|
+
V(get_source_map_error_source, v8::Function) \
|
|
490
|
+
V(host_import_module_dynamically_callback, v8::Function) \
|
|
491
|
+
V(host_initialize_import_meta_object_callback, v8::Function) \
|
|
492
|
+
V(http2session_on_altsvc_function, v8::Function) \
|
|
493
|
+
V(http2session_on_error_function, v8::Function) \
|
|
494
|
+
V(http2session_on_frame_error_function, v8::Function) \
|
|
495
|
+
V(http2session_on_goaway_data_function, v8::Function) \
|
|
496
|
+
V(http2session_on_headers_function, v8::Function) \
|
|
497
|
+
V(http2session_on_origin_function, v8::Function) \
|
|
498
|
+
V(http2session_on_ping_function, v8::Function) \
|
|
499
|
+
V(http2session_on_priority_function, v8::Function) \
|
|
500
|
+
V(http2session_on_settings_function, v8::Function) \
|
|
501
|
+
V(http2session_on_stream_close_function, v8::Function) \
|
|
502
|
+
V(http2session_on_stream_trailers_function, v8::Function) \
|
|
503
|
+
V(internal_binding_loader, v8::Function) \
|
|
504
|
+
V(immediate_callback_function, v8::Function) \
|
|
505
|
+
V(inspector_console_extension_installer, v8::Function) \
|
|
506
|
+
V(inspector_disable_async_hooks, v8::Function) \
|
|
507
|
+
V(inspector_disable_network_tracking, v8::Function) \
|
|
508
|
+
V(inspector_enable_async_hooks, v8::Function) \
|
|
509
|
+
V(inspector_enable_network_tracking, v8::Function) \
|
|
510
|
+
V(maybe_cache_generated_source_map, v8::Function) \
|
|
511
|
+
V(messaging_deserialize_create_object, v8::Function) \
|
|
512
|
+
V(message_port, v8::Object) \
|
|
513
|
+
V(builtin_module_require, v8::Function) \
|
|
514
|
+
V(performance_entry_callback, v8::Function) \
|
|
515
|
+
V(prepare_stack_trace_callback, v8::Function) \
|
|
516
|
+
V(process_object, v8::Object) \
|
|
517
|
+
V(process_emit_warning_sync, v8::Function) \
|
|
518
|
+
V(primordials, v8::Object) \
|
|
519
|
+
V(primordials_safe_map_prototype_object, v8::Object) \
|
|
520
|
+
V(primordials_safe_set_prototype_object, v8::Object) \
|
|
521
|
+
V(primordials_safe_weak_map_prototype_object, v8::Object) \
|
|
522
|
+
V(primordials_safe_weak_set_prototype_object, v8::Object) \
|
|
523
|
+
V(promise_hook_handler, v8::Function) \
|
|
524
|
+
V(promise_reject_callback, v8::Function) \
|
|
525
|
+
V(snapshot_serialize_callback, v8::Function) \
|
|
526
|
+
V(snapshot_deserialize_callback, v8::Function) \
|
|
527
|
+
V(snapshot_deserialize_main, v8::Function) \
|
|
528
|
+
V(source_map_cache_getter, v8::Function) \
|
|
529
|
+
V(tick_callback_function, v8::Function) \
|
|
530
|
+
V(timers_callback_function, v8::Function) \
|
|
531
|
+
V(tls_wrap_constructor_function, v8::Function) \
|
|
532
|
+
V(trace_category_state_function, v8::Function) \
|
|
533
|
+
V(udp_constructor_function, v8::Function) \
|
|
534
|
+
V(url_constructor_function, v8::Function) \
|
|
535
|
+
V(wasm_streaming_compilation_impl, v8::Function) \
|
|
536
|
+
V(wasm_streaming_object_constructor, v8::Function)
|
|
537
|
+
|
|
538
|
+
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
539
|
+
|
|
540
|
+
#endif // SRC_ENV_PROPERTIES_H_
|