blob: 34de198cd22de2683a7ad2e53fbc8c48a45c2022 (
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
|
=== input wast ===
(module $hel
(memory $lo 0 0)
(table $wor 0 0 funcref)
(global $ld i32 (i32.const 0))
(func $of (param $wasm i32)
(local $!#$%&'*+-./:<=>?@\^_`|~ f64)
)
)
=== parsed wast ===
(module $hel
(type $0 (func (param i32)))
(global $ld i32 (i32.const 0))
(memory $lo 0 0)
(table $wor 0 0 funcref)
(func $of (param $wasm i32)
(local $!#$%&'*+-./:<=>?@\^_`|~ f64)
)
)
=== roundtripped ===
(module $hel
(type $0 (func (param i32)))
(global $ld i32 (i32.const 0))
(memory $lo 0 0)
(table $wor 0 0 funcref)
(func $of (param $js i32)
(local $!#$%&'*+-./:<=>?@\5c^_`|~ f64)
)
)
=== roundtripped again ===
(module $hel
(type $0 (func (param i32)))
(global $ld i32 (i32.const 0))
(memory $lo 0 0)
(table $wor 0 0 funcref)
(func $of (param $js i32)
(local $!#$%&'*+-./:<=>?@\5c^_`|~ f64)
)
)
|