Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions deps/v8/src/wasm/wasm-feature-flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,6 @@
/* V8 side owner: jkummerow */ \
V(imported_strings_utf8, "imported strings (utf8 features)", false) \
\
/* Exnref */ \
/* This flag enables the new exception handling proposal */ \
/* V8 side owner: thibaudm */ \
V(exnref, "exnref", false) \
\
/* JavaScript Promise Integration proposal. */ \
/* https://github.com/WebAssembly/js-promise-integration */ \
/* V8 side owner: thibaudm, fgm */ \
Expand All @@ -130,7 +125,13 @@
/* https://github.com/WebAssembly/js-string-builtins */ \
/* V8 side owner: jkummerow */ \
/* Shipped in v13.0 */ \
V(imported_strings, "imported strings", true)
V(imported_strings, "imported strings", true) \
\
/* Exnref */ \
/* This flag enables the new exception handling proposal */ \
/* V8 side owner: thibaudm */ \
/* Shipped in v13.7 */ \
V(exnref, "exnref", true)

// Combination of all available wasm feature flags.
#define FOREACH_WASM_FEATURE_FLAG(V) \
Expand Down
Loading