assemblyscript/tests/compiler/wildcard-export.optimized.wat
2019-02-21 11:38:56 +01:00

18 lines
435 B
Plaintext

(module
(type $_ (func))
(memory $0 0)
(table $0 1 funcref)
(elem (i32.const 0) $start)
(global $export/a i32 (i32.const 1))
(global $export/b i32 (i32.const 2))
(export "memory" (memory $0))
(export "table" (table $0))
(export "a" (global $export/a))
(export "renamed_a" (global $export/a))
(export "renamed_b" (global $export/b))
(export "renamed_renamed_b" (global $export/b))
(func $start (; 0 ;) (type $_)
nop
)
)