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
According to the WebAssembly exception handling proposal, a catch block must be directly associated with a try block. If not, the module should fail validation with an error similar to:
catch block isn't associated to a try
The text was updated successfully, but these errors were encountered:
wasm-interp
does not enforce the requirement that acatch
block must be associated with atry
block.Test case
program.wasm
program.wasm.txt
Environment
Actual behavior
Expected Behavior
According to the WebAssembly exception handling proposal, a catch block must be directly associated with a try block. If not, the module should fail validation with an error similar to:
The text was updated successfully, but these errors were encountered: