anybody have good ideas for catching probable memory corruption that only occurs in my webassembly target?
I have some extra glue code which could be the culprit, and the changed memory (according to the chrome debugger anyway) changes when stepping into a C++ class's
default constructor (but not yet initializing the members, this occurs in a dependency of mine).
Also the problem "goes away" (but another one appears later) if you increase the initial memory in build.zig, but I placed breakpoints on all wasm memory.grow instructions and don't see that being reached during the change.