blob: e9006bf16fe3d5d152d5c6a52ea6787576ea0e9e (
plain)
1
2
3
4
5
6
7
|
let a = registerModule('a', parseModule("export var a = 1; export var b = 2;"));
let b = registerModule('b', parseModule("export var b = 3; export var c = 4;"));
let c = registerModule('c', parseModule("export * from 'a'; export * from 'b';"));
let d = registerModule('d', parseModule("import { a } from 'c'; a;"));
d.declarationInstantiation();
d.evaluation();
|