react-native-webassembly icon indicating copy to clipboard operation
react-native-webassembly copied to clipboard

feature: WebAssembly.Table support

Open samuelscheit opened this issue 1 year ago • 0 comments

The WebAssembly.Table object is a JavaScript wrapper object — an array-like structure representing a WebAssembly table, which stores homogeneous references. A table created by JavaScript or in WebAssembly code will be accessible and mutable from both JavaScript and WebAssembly.

Emscripten uses WebAssembly.Table and react-native-webassembly currently does not support exporting Wasm.Tables it only supports functions.

However to use emscripten wasm modules wasm.table is needed and needs to be implemented.

samuelscheit avatar Aug 27 '24 10:08 samuelscheit