diff options
author | Marcus Better <marcusb@users.noreply.github.com> | 2022-12-27 10:57:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-27 07:57:42 -0800 |
commit | aefa094ea44619a410218ab754c6b58ac3a49683 (patch) | |
tree | 0fd79486487d803139e387e1a660a0189a9e3a91 /src/emscripten-exports.txt | |
parent | d9338f70a26cc9ee4e64da71ce3b50d4c44e0c03 (diff) | |
download | wabt-aefa094ea44619a410218ab754c6b58ac3a49683.tar.gz wabt-aefa094ea44619a410218ab754c6b58ac3a49683.tar.bz2 wabt-aefa094ea44619a410218ab754c6b58ac3a49683.zip |
Enable features in libwabt.js by default (#2109)
This applies the same defaults for features in the JavaScript-compiled
version as the native tools. Without this change, enabling only the
"reference_types" feature did not work, as it got turned off due to
the dependency on "bulk_memory", which is counter-intuitive (see
Features::UpdateDependencies()).
Additionally, exposes all the features and their default setting in
JavaScript.
Diffstat (limited to 'src/emscripten-exports.txt')
-rw-r--r-- | src/emscripten-exports.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/emscripten-exports.txt b/src/emscripten-exports.txt index f256c7ea..63867312 100644 --- a/src/emscripten-exports.txt +++ b/src/emscripten-exports.txt @@ -1,7 +1,9 @@ _free _malloc +_wabt_annotations_enabled _wabt_apply_names_module _wabt_bulk_memory_enabled +_wabt_code_metadata_enabled _wabt_destroy_errors _wabt_destroy_features _wabt_destroy_module @@ -11,9 +13,14 @@ _wabt_destroy_read_binary_result _wabt_destroy_wast_lexer _wabt_destroy_write_module_result _wabt_exceptions_enabled +_wabt_extended_const_enabled _wabt_format_binary_errors _wabt_format_text_errors +_wabt_function_references_enabled +_wabt_gc_enabled _wabt_generate_names_module +_wabt_memory64_enabled +_wabt_multi_memory_enabled _wabt_multi_value_enabled _wabt_mutable_globals_enabled _wabt_new_errors @@ -33,8 +40,15 @@ _wabt_read_binary_result_release_module _wabt_reference_types_enabled _wabt_relaxed_simd_enabled _wabt_sat_float_to_int_enabled +_wabt_set_annotations_enabled _wabt_set_bulk_memory_enabled +_wabt_set_code_metadata_enabled _wabt_set_exceptions_enabled +_wabt_set_extended_const_enabled +_wabt_set_function_references_enabled +_wabt_set_gc_enabled +_wabt_set_memory64_enabled +_wabt_set_multi_memory_enabled _wabt_set_multi_value_enabled _wabt_set_mutable_globals_enabled _wabt_set_reference_types_enabled |