_free
function not exported in wasm module generated by plugin-wasm
#474
Labels
_free
function not exported in wasm module generated by plugin-wasm
#474
The
WasmModule
interface expects the_free
function to be exported (for the purposes of disposing aWasmBuffer
). Up until now, theWasmBuffer.dispose
method wasn't called as part of other constructs, but when I started fixing that (for #471), thedispose
call would throw an error because_free
is not available.We need to update
EXPORTED_FUNCTIONS
in plugin-wasm to include_free
and update related documentation.The text was updated successfully, but these errors were encountered: