blob: 1d557b337092d913c8f783f416355c1fa449082b [file] [log] [blame] [edit]
=== default ===
debugInfo=false
(module
(type $none_=>_none (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 $none_=>_none (func))
(memory $0 0)
(export "test" (func $0))
(func $0
(nop)
)
)