blob: 18d0f57727c4c8b4f3d405bccf6214a3777db789 (
plain)
1
2
3
4
5
6
7
8
|
import { f } from "./file_script_module_element_and_import_imported_1.js";
import { g } from "./file_script_module_element_and_import_imported_2.js";
import { h } from "./file_script_module_element_and_import_imported_3.js";
f();
g();
h();
window.dispatchEvent(new Event("test_evaluated"));
|