diff options
Diffstat (limited to 'test/exception-handling.wast.fromBinary')
-rw-r--r-- | test/exception-handling.wast.fromBinary | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary index 9a89a0beb..29231a943 100644 --- a/test/exception-handling.wast.fromBinary +++ b/test/exception-handling.wast.fromBinary @@ -15,7 +15,7 @@ (func $bar (nop) ) - (func $eh_test + (func $eh-test (local $x i32) (local $1 i64) (local $2 (i32 i64)) @@ -197,7 +197,7 @@ ) ) ) - (try + (try $label$37 (do (throw $tag$0 (i32.const 0) @@ -382,7 +382,7 @@ ) ) ) - (func $pop_test + (func $pop-test (try $label$5 (do (nop) @@ -408,5 +408,21 @@ ) ) ) + (func $catchless-try-with-inner-delegate + (try $label$6 + (do + (block $label$1 + (try $label$4 + (do + (throw $tag$0 + (i32.const 0) + ) + ) + (delegate $label$6) + ) + ) + ) + ) + ) ) |