blob: da8fff40027f8e570d4177266b8bd9481d952059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
const { f } = await import(
"./file_script_module_dynamic_and_static_imported_1.mjs"
);
import { g } from "./file_script_module_dynamic_and_static_imported_2.mjs";
import { h } from "./file_script_module_dynamic_and_static_imported_3.mjs";
f();
g();
h();
window.dispatchEvent(new Event("test_evaluated"));
|