summaryrefslogtreecommitdiff
path: root/test/br_to_try.wasm.fromBinary
blob: 8aa1bdd5e673a36d1ac2cfe2a22a2dd788116cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(module
 (type $none_=>_none (func))
 (type $i32_=>_none (func (param i32)))
 (event $event$0 (attr 0) (param i32))
 (func $0
  (try $label$3
   (do
    (block $label$1
     (br $label$1)
    )
   )
   (catch $event$0
    (drop
     (pop i32)
    )
   )
  )
 )
)