blob: 7802e3415399d5cfb2e9a6845ac01ca73c9d6047 (
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
|
=== default ===
debugInfo=false
(module
(type $0 (func))
(memory $0 0)
(export "test" (func $0))
(func $0
(nop)
)
)
=== with debug info ===
debugInfo=true
(module
(type $v (func))
(memory $0 0)
(export "test" (func $test))
(func $test
(nop)
)
)
=== without debug info ===
debugInfo=false
(module
(type $0 (func))
(memory $0 0)
(export "test" (func $0))
(func $0
(nop)
)
)
|