Skip to content

Commit

Permalink
[GR-57970] Backport to 24.1: Make js.webassembly option stable.
Browse files Browse the repository at this point in the history
PullRequest: js/3257
  • Loading branch information
OracleLabsAutomation authored and elkorchi committed Sep 18, 2024
2 parents 4deb7c0 + c6cbcdd commit 3af98dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The main focus is on user-observable behavior of the engine.
Changelog may include unreleased versions.
See [release calendar](https://www.graalvm.org/release-calendar/) for release dates.

## Version 24.1.1
* Made option `js.webassembly` stable.

## Version 24.1.0
* ECMAScript 2024 mode/features enabled by default.
* Implemented the [Make eval-introduced global vars redeclarable](https://github.com/tc39/proposal-redeclarable-global-eval-vars) proposal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ public Map<String, String> apply(String value) {
@CompilationFinal private boolean useUTCForLegacyDates;

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

Expand Down

0 comments on commit 3af98dd

Please sign in to comment.