diff options
Diffstat (limited to 'test/exception-handling.wast.fromBinary')
-rw-r--r-- | test/exception-handling.wast.fromBinary | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary index ff9a71f28..e50d18f3a 100644 --- a/test/exception-handling.wast.fromBinary +++ b/test/exception-handling.wast.fromBinary @@ -3,10 +3,10 @@ (type $i32_=>_none (func (param i32))) (type $i64_=>_none (func (param i64))) (type $i32_i64_=>_none (func (param i32 i64))) - (event $event$0 (attr 0) (param i32)) - (event $event$1 (attr 0) (param i64)) - (event $event$2 (attr 0) (param i32 i64)) - (event $event$3 (attr 0) (param)) + (tag $tag$0 (attr 0) (param i32)) + (tag $tag$1 (attr 0) (param i64)) + (tag $tag$2 (attr 0) (param i32 i64)) + (tag $tag$3 (attr 0) (param)) (func $foo (nop) ) @@ -21,11 +21,11 @@ (local $4 i32) (try $label$3 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -33,12 +33,12 @@ ) (try $label$6 (do - (throw $event$2 + (throw $tag$2 (i32.const 0) (i64.const 0) ) ) - (catch $event$2 + (catch $tag$2 (local.set $2 (pop i32 i64) ) @@ -75,7 +75,7 @@ (do (br $label$7) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -87,7 +87,7 @@ (do (nop) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -98,7 +98,7 @@ (call $foo) (call $bar) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -108,16 +108,16 @@ ) (try $label$19 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) ) - (catch $event$1 + (catch $tag$1 (drop (pop i64) ) @@ -125,7 +125,7 @@ ) (try $label$22 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) @@ -135,16 +135,16 @@ ) (try $label$25 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) ) - (catch $event$1 + (catch $tag$1 (drop (pop i64) ) @@ -158,11 +158,11 @@ (do (try $label$29 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -172,7 +172,7 @@ ) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -180,11 +180,11 @@ (catch_all (try $label$33 (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -197,7 +197,7 @@ ) (try (do - (throw $event$0 + (throw $tag$0 (i32.const 0) ) ) @@ -269,7 +269,7 @@ (do (nop) ) - (catch $event$3 + (catch $tag$3 (nop) ) ) @@ -279,7 +279,7 @@ (do (call $foo) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -294,7 +294,7 @@ (do (call $foo) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -314,7 +314,7 @@ (do (call $foo) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) @@ -335,7 +335,7 @@ (do (call $foo) ) - (catch $event$0 + (catch $tag$0 (drop (pop i32) ) |