blob: 415db5ec7811118cd3d598810c90d806b19267af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
const importsDir = Deno.readDirSync(
Deno.realPathSync("./run/top_level_await/tla2"),
);
const resolvedPaths = [];
for (const { name } of importsDir) {
const filePath = Deno.realPathSync(`./run/top_level_await/tla2/${name}`);
resolvedPaths.push(filePath);
}
resolvedPaths.sort();
for (const filePath of resolvedPaths) {
console.log("loading", filePath);
const mod = await import(`file://${filePath}`);
console.log("loaded", mod);
}
console.log("all loaded");
|