Adrian Cole
Adrian Cole
Current Status: Current thinking for globals is to leave mutability supported at scope of goroutine. This means any number of modules can share a global as long as they don't...
I'm not really even sure mutable global import/export is a WebAssembly 1.0 (MVP) feature or not. I think it is, but raised https://github.com/WebAssembly/spec/issues/1425 to qualify
actually it is supported as looking at the diff, the following like was removed, and the published spec doesn't have this line: > In the current version of WebAssembly, only...
Mutable globals are enabled by default, but can be disabled by RuntimeConfig now
Before we go down this road, we should make sure what you are doing is something supported in Javy and I expect it to not be. As far as I...
ps regardless I'll work on the perf thing. We may also end up needing to do scope overrides for all things, not just filesystem (see the experimental package). just I...
excellent update. thanks!
This is important for porting some existing gasm code, which return a second value which is an error. We need a clean path to migrate folks and saying "panic" looks...
actually I looked closer at the code and it was returning an errno (uint32) cast as an error. Let's start with #433 and also documenting what panics are used for...
hi @clarkmcc WebAssembly doesn't have a way in 1.0 or 2.0 to catch exceptions, though it may be the case in the [future](https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/Exceptions.md). So, the way errors work are somewhat...