1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
const { Module, Instance, Global, instantiate, instantiateStreaming } = WebAssembly;
const g = new Global({value: "i32", mutable:true}, 0);
const code = wasmTextToBinary(`(module
(global $g (import "" "g") (mut i32))
(func $start (global.set $g (i32.add (global.get $g) (i32.const 1))))
(start $start)
)`);
const module = new Module(code);
const importObj = { '': { get g() { g.value++; return g } } };
g.value = 0;
new Instance(module, importObj);
assertEq(g.value, 2);
g.value = 0;
instantiate(module, importObj).then(i => {
assertEq(i instanceof Instance, true);
assertEq(g.value, 2);
g.value++;
});
assertEq(g.value, 1);
drainJobQueue();
assertEq(g.value, 3);
g.value = 0;
instantiate(code, importObj).then(({module,instance}) => {
assertEq(module instanceof Module, true);
assertEq(instance instanceof Instance, true);
assertEq(g.value, 2); g.value++; }
);
drainJobQueue();
assertEq(g.value, 3);
if (wasmStreamingEnabled()) {
g.value = 0;
instantiateStreaming(code, importObj).then(({module,instance}) => {
assertEq(module instanceof Module, true);
assertEq(instance instanceof Instance, true);
assertEq(g.value, 2);
g.value++;
});
drainJobQueue();
assertEq(g.value, 3);
}
|