blob: 41136cf95a4fd69e4859f78d485136a076aeef27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(module
(type $0 (func))
(import "env" "memory" (memory $0 256))
(data (i32.const 1024) "hello, this is some data!")
(import "env" "table" (table $0 10 anyfunc))
(elem (i32.const 8) $foo $foo)
(import "env" "memoryBase" (global $memoryBase$0 i32))
(import "env" "tableBase" (global $tableBase$0 i32))
(func $foo (; 0 ;) (type $0)
(drop
(get_global $tableBase$0)
)
(drop
(get_global $memoryBase$0)
)
)
)
|