diff --git a/deps/v8/src/wasm/wasm-feature-flags.h b/deps/v8/src/wasm/wasm-feature-flags.h index 1f7c5f4e290a01..4fb01e8fba9d8a 100644 --- a/deps/v8/src/wasm/wasm-feature-flags.h +++ b/deps/v8/src/wasm/wasm-feature-flags.h @@ -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 */ \ @@ -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) \