assemblyscript/tests/compiler/export-default.untouched.wat

16 lines
400 B
Plaintext
Raw Permalink Normal View History

2019-06-05 23:15:39 +02:00
(module
(type $FUNCSIG$v (func))
(memory $0 0)
(table $0 1 funcref)
(elem (i32.const 0) $null)
2019-06-13 15:33:43 +02:00
(global $~lib/error (mut i32) (i32.const 0))
2019-06-05 23:15:39 +02:00
(export "memory" (memory $0))
(export "theDefault" (func $export-default/theDefault))
(export "default" (func $export-default/theDefault))
(func $export-default/theDefault (; 0 ;) (type $FUNCSIG$v)
nop
)
(func $null (; 1 ;) (type $FUNCSIG$v)
)
)