blob: d6b23f7cd415d0b67d5f9103b74edf16e53ced80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Test importing a namespace many times.
const count = 1024;
let a = registerModule('a', parseModule("export let a = 1;"));
let s = "";
for (let i = 0; i < count; i++) {
s += "import * as ns" + i + " from 'a';\n";
s += "assertEq(ns" + i + ".a, 1);\n";
}
let b = registerModule('b', parseModule(s));
b.declarationInstantiation();
b.evaluation();
|