assemblyscript/tests/compiler/wildcard-export.optimized.wat

18 lines
451 B
Plaintext
Raw Normal View History

2019-02-21 02:38:56 -08:00
(module
(type $FUNCSIG$v (func))
2019-02-21 02:38:56 -08:00
(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 $FUNCSIG$v)
2019-02-21 02:38:56 -08:00
nop
)
)