When I call an exported function of a WebAssembly module instance, how do Javascript and WebAssembly interact?
instance = WebAssembly.instantiate(bytes)
result = instance.exports.myFunction()
What happens if the .wasm instance enters an infinite loop? Will control eventually be transferred back to the Javascript function that invoked it?