Skip to content

Commit

Permalink
Enable all standardized wasm features (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
MendyBerger authored Dec 29, 2022
1 parent 4cb53b6 commit 639aabc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions editor/js/editable-wat.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,12 @@ import {
const watBuffer = encoder.encode(wat);
const module = wabt.parseWat("", watBuffer, {
exceptions: true,
mutable_globals: true,
sat_float_to_int: true,
sign_extension: true,
simd: true,
multi_value: true,
bulk_memory: true,
reference_types: true,
});
module.resolveNames();
Expand Down

0 comments on commit 639aabc

Please sign in to comment.