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
You mentioned the suggar of the WebAssembly text format, but it's missing a bit of formal definition.
WebAssembly specifies a textual representation called wat (WebAssembly Text Format): https://webassembly.github.io/spec/core/text/index.html, which is a direct mapping from the binary version. It has no nesting nor identifiers (everything is index based).
You mentioned the suggar of the WebAssembly text format, but it's missing a bit of formal definition.
WebAssembly specifies a textual representation called
wat
(WebAssembly Text Format): https://webassembly.github.io/spec/core/text/index.html, which is a direct mapping from the binary version. It has no nesting nor identifiers (everything is index based).The suggared version is called
wast
(WebAssembly "Script Text Format): https://github.com/WebAssembly/spec/tree/master/interpreter#s-expression-syntax, it's not part of the official specification and is made for convenience (used in the spec tests).The text was updated successfully, but these errors were encountered: