blob: 55f6422afbb373ac95f29a72969977f9da3a3cd1 (
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":41,"type":1,"event":"e"}
getExpressionInfo(br_on_exn) = {"id":43,"type":8,"name":"l","event":"e"}
getExpressionInfo(rethrow) = {"id":42,"type":1}
getExpressionInfo(try) = {"id":40,"type":0}
|