Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
wabt
/
refs/heads/main
/
.
/
test
/
parse
/
expr
/
try-catch-all.txt
blob: c877b1038cded0cc183a48a9c7b5215cc30e6ee9 [
file
] [
edit
]
;;; TOOL: wat2wasm
;;; ARGS: --enable-exceptions
(module
(tag $e1 (param i32))
(tag $e2 (param i32 i32))
;; multiple catch clauses ending with catch_all
(func
try
nop
catch $e1
drop
catch $e2
drop
drop
catch_all
end)
)