Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/env.h
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-04-23 06:09:15 +0300
committerMichaël Zasso <targos@protonmail.com>2022-04-28 07:57:22 +0300
commitb0f7c4c8f928597f2118dde73c98ac0fba8f01f9 (patch)
tree05d1cf273c607c243275988b2236a69b9607729f /src/env.h
parentc6c1dc58335f08b52139a0692502486bcb8b6ea0 (diff)
lib,src: implement WebAssembly Web API
Refs: https://github.com/nodejs/node/pull/41749 Fixes: https://github.com/nodejs/node/issues/21130 PR-URL: https://github.com/nodejs/node/pull/42701 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to 'src/env.h')
-rw-r--r--src/env.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/env.h b/src/env.h
index bededfcb5de..7e35833e45b 100644
--- a/src/env.h
+++ b/src/env.h
@@ -550,7 +550,9 @@ constexpr size_t kFsStatsBufferLength =
V(tls_wrap_constructor_function, v8::Function) \
V(trace_category_state_function, v8::Function) \
V(udp_constructor_function, v8::Function) \
- V(url_constructor_function, v8::Function)
+ V(url_constructor_function, v8::Function) \
+ V(wasm_streaming_compilation_impl, v8::Function) \
+ V(wasm_streaming_object_constructor, v8::Function)
class Environment;
struct AllocatedBuffer;