Results 67 comments of wanderer

related: https://github.com/WebAssembly/design/issues/720

> the glue layer could create a JS function closure that contained an exported wasm function and wasm closure state This won't work if you also use `start`. (which might...

@lukewagner we are thinking about this again now in our [prototype](https://github.com/ewasm/ewasm-kernel). One of the import method we define needs to do a async look up (if in node.js from the...

@lukewagner I don't think that will work, we don't control the code is running in the wasm instance. We want to be able to give the wasn instance an import...

> What do you mean by "has to do some async work"? getStorage need to pull load from value from either the network or disk. Both of which are not...

@jfbastien so far we have managed work around this limitatio by adding callback to all the c interface. Another option to run the wasm instance in a webworker use a...

> This bug gave me SUCH a headache to find. I was just trying to build my Next JS application, and I kept getting the error `Cannot read properties of...