We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Webassembly standard renamed get_local into local.get and the examples using it fail in modern wat2wasm versions, e.g 1.0.29
WebAssembly/spec#884
user@host:~/Documents/wasm/wabt-playground$ ../wabt/bin/wat2wasm add.wat add.wat:3:3: error: unexpected token get_local, expected ). get_local $lhs ^^^^^^^^^ add.wat:4:3: error: unexpected token get_local. get_local $rhs ^^^^^^^^^
Fix is to use local.get instead.
The text was updated successfully, but these errors were encountered:
Hi @pjmlp , The code has become outdated because of the underlying library change.
Sorry, something went wrong.
No branches or pull requests
The Webassembly standard renamed get_local into local.get and the examples using it fail in modern wat2wasm versions, e.g 1.0.29
WebAssembly/spec#884
Fix is to use local.get instead.
The text was updated successfully, but these errors were encountered: