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
It would be nice if this error message also printed out the import's name:
foo.wast:72385:11: too many parameters to function in call_import. got 4, expected 3
foo.wast:72398:9: too few parameters to function in call_import. got 1, expected 2
Right now I hack around it with grep / cut / xargs / head / tail and it's ugly :-)
The text was updated successfully, but these errors were encountered:
* Make "sandbox" a WABT feature.
Instead of having an ad-hoc option just in wasm2c, this makes it
possible to specify sandbox or no-sandbox mode across all wabt tools.
(Most tools are currently not sensitive to it.)
This changes how the option is given on the command line.
Instead of writing --no-sandbox, now write --disable-sandbox.
* In wasm2c: no-sandbox -> sandbax.
* Fix help tests.
* Fix tests that knew about --no-sandbox.
It would be nice if this error message also printed out the import's name:
Right now I hack around it with grep / cut / xargs / head / tail and it's ugly :-)
The text was updated successfully, but these errors were encountered: