blob: 3d83e46e58b27166951eb2cc612cb0745942d21c [file] [log] [blame] [edit]
=== default ===
debugInfo=false
(module
(type $none_=>_none (func))
(memory $0 0)
(export "test" (func $0))
(func $0 (; 0 ;)
(nop)
)
)
=== with debug info ===
debugInfo=true
(module
(type $none_=>_none (func))
(memory $0 0)
(export "test" (func $test))
(func $test (; 0 ;)
(nop)
)
)
=== without debug info ===
debugInfo=false
(module
(type $none_=>_none (func))
(memory $0 0)
(export "test" (func $0))
(func $0 (; 0 ;)
(nop)
)
)