blob: 2e77268917651f3a6de46b57c8eeba00de8eaf9d (
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
|
const count = 10;
let stencil = compileToStencilXDR("export let a = 1;", {module: true});
let m = instantiateModuleStencilXDR(stencil);
let a = registerModule('a', m);
let s = "";
for (let i = 0; i < count; i++) {
s += "import { a as i" + i + " } from 'a';\n";
s += "assertEq(i" + i + ", 1);\n";
}
stencil = compileToStencilXDR(s, {module: true});
m = instantiateModuleStencilXDR(stencil);
let b = registerModule('b', m);
moduleLink(b);
moduleEvaluate(b);
stencil = compileToStencilXDR("import * as nsa from 'a'; import * as nsb from 'b';", {module: true});
m = instantiateModuleStencilXDR(stencil);
moduleLink(m);
moduleEvaluate(m);
|