blob: ae3d6a0e7336e785b1634705057e759bce5c4c00 (
plain)
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
|
// |jit-test| skip-if: !wasmDebuggingEnabled()
var evalInFrame = (function(global) {
var dbgGlobal = newGlobal({newCompartment: true});
var dbg = new dbgGlobal.Debugger();
dbg.addDebuggee(global);
})(this);
const Module = WebAssembly.Module;
const Instance = WebAssembly.Instance;
var m = new Module(wasmTextToBinary(`(module
(import "" "foo" (func $foo (result i32)))
(import "" "bar" (func $bar (result i32)))
(table 3 funcref)
(func $baz (result i32) (i32.const 13))
(elem (i32.const 0) $foo $bar $baz)
(export "tbl" (table 0))
)`));
var jsFun = () => 83;
var wasmFun = new Instance(
new Module(
wasmTextToBinary('(module (func (result i32) (i32.const 42)) (export "foo" (func 0)))')
)
).exports.foo;
var e1 = new Instance(m, {
"": {
foo: jsFun,
bar: wasmFun
}
}).exports;
var e2 = new Instance(m, {
"": {
foo: jsFun,
bar: jsFun
}
}).exports;
e2.tbl.get(0);
|