blob: 3185794d9dd254303e2e49c3c5acd4e76f834606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
GetGlobal is equal: true
getGlobalInfo={"module":"","base":"","mutable":false}
getExpressionInfo(init)={"id":14,"value":1}
(i32.const 1)
(module
(import "module" "base" (global $a-global-imp i32))
(import "module" "base" (global $a-mut-global-imp (mut i32)))
(global $a-global i32 (i32.const 1))
(export "a-global-exp" (global $a-global))
)
(module
(import "module" "base" (global $a-global-imp i32))
(import "module" "base" (global $a-mut-global-imp (mut i32)))
)
|