blob: a1bd9db2a9ec4023d4dcd3dd07d211d3d44f064b (
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
|
// OOM tests for module parsing.
if (!('oomTest' in this))
quit();
load(libdir + "dummyModuleResolveHook.js");
const sa =
`export default 20;
export let a = 22;
export function f(x, y) { return x + y }
`;
const sb =
`import x from "a";
import { a as y } from "a";
import * as ns from "a";
ns.f(x, y);
`;
oomTest(() => {
let a = moduleRepo['a'] = parseModule(sa);
let b = moduleRepo['b'] = parseModule(sb);
b.declarationInstantiation();
assertEq(b.evaluation(), 42);
});
|