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
I didn't see anything about integration with the JS interface, apologies if I've missed this.
Specifically, the WebAssembly.Memory constructor takes a number of pages and does not (currently) have anything which specifies page size. Probably it should just take an additional option in the options bag to specify the page size? Also it might be good to expose the page size on the Memory objects as well, since .grow also works in units of page size and you really want to know if you're growing by N bytes or N*64k bytes.
The text was updated successfully, but these errors were encountered:
I didn't see anything about integration with the JS interface, apologies if I've missed this.
Specifically, the
WebAssembly.Memory
constructor takes a number of pages and does not (currently) have anything which specifies page size. Probably it should just take an additional option in the options bag to specify the page size? Also it might be good to expose the page size on theMemory
objects as well, since.grow
also works in units of page size and you really want to know if you're growing by N bytes or N*64k bytes.The text was updated successfully, but these errors were encountered: