You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I finally started implementing wasm-bindgen compatibility in stdweb, and it works! It is however not yet entirely functional - for that I need access to the function table of the WASM's module. In the RFC it was said that an extra wasm_bindgen::function_table() intrinsic will be added to access the function table; from what I can see that hasn't been done yet?
Any way I can help?
The text was updated successfully, but these errors were encountered:
This commit adds an intrinsics to the `wasm_bindgen` crate which
accesses the `WebAssembly.Table` which is the function table of the
module. Eventually the thinking is that a module would import its own
function table via native wasm functionality (via `anyref` and such),
but until that's implemented let's add a binding for it ourselves!
Closesrustwasm#1427
This commit adds an intrinsics to the `wasm_bindgen` crate which
accesses the `WebAssembly.Table` which is the function table of the
module. Eventually the thinking is that a module would import its own
function table via native wasm functionality (via `anyref` and such),
but until that's implemented let's add a binding for it ourselves!
Closesrustwasm#1427
So I finally started implementing
wasm-bindgen
compatibility instdweb
, and it works! It is however not yet entirely functional - for that I need access to the function table of the WASM's module. In the RFC it was said that an extrawasm_bindgen::function_table()
intrinsic will be added to access the function table; from what I can see that hasn't been done yet?Any way I can help?
The text was updated successfully, but these errors were encountered: