blob: 1029a9de995be0c8c11451df73b262c1323006e1 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
;;; TOOL: wat2wasm
;;; ARGS: --enable-exceptions
(module
(tag $e)
(func
try $l1
nop
catch $e
block $l2
try $l3
nop
catch $e
try $l4
rethrow $l3
rethrow 1
rethrow $l1
rethrow 3
catch $e
rethrow $l4
rethrow 0
rethrow $l3
rethrow 1
rethrow $l1
rethrow 3
end
end
end
end)
(func
try $l1
nop
catch_all
block $l2
try $l3
nop
catch_all
try $l4
rethrow $l3
rethrow 1
rethrow $l1
rethrow 3
catch_all
rethrow $l4
rethrow 0
rethrow $l3
rethrow 1
rethrow $l1
rethrow 3
end
end
end
end)
)
|