Skip to content

Commit 3d3d33a

Browse files
woesselkorchi
authored andcommitted
Make js.webassembly option stable and allowed in sandboxed mode.
(cherry picked from commit 2a26d91)
1 parent 4deb7c0 commit 3d3d33a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graal-js/src/com.oracle.truffle.js/src/com/oracle/truffle/js/runtime/JSContextOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ public Map<String, String> apply(String value) {
540540
@CompilationFinal private boolean useUTCForLegacyDates;
541541

542542
public static final String WEBASSEMBLY_NAME = JS_OPTION_PREFIX + "webassembly";
543-
@Option(name = WEBASSEMBLY_NAME, category = OptionCategory.EXPERT, help = "Enable WebAssembly JavaScript API.") //
543+
@Option(name = WEBASSEMBLY_NAME, category = OptionCategory.USER, stability = OptionStability.STABLE, help = "Enable WebAssembly JavaScript API.") //
544544
public static final OptionKey<Boolean> WEBASSEMBLY = new OptionKey<>(false);
545545
@CompilationFinal private boolean webAssembly;
546546

0 commit comments

Comments
 (0)