summaryrefslogtreecommitdiff
path: root/test/binaryen.js/exception-handling.js.txt
blob: 11486ab1102661a334f84bb4217c1f3b493bdd8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(module
 (type $none_=>_none (func))
 (type $i32_=>_none (func (param i32)))
 (event $e (attr 0) (param i32))
 (func $test (; 0 ;)
  (local $0 exnref)
  (try
   (throw $e
    (i32.const 0)
   )
   (catch
    (local.set $0
     (exnref.pop)
    )
    (drop
     (block $l (result i32)
      (rethrow
       (br_on_exn $l $e
        (local.get $0)
       )
      )
     )
    )
   )
  )
 )
)

getExpressionInfo(throw) = {"id":44,"type":1,"event":"e"}
getExpressionInfo(br_on_exn) = {"id":46,"type":10,"name":"l","event":"e"}
getExpressionInfo(rethrow) = {"id":45,"type":1}
getExpressionInfo(try) = {"id":43,"type":0}