summaryrefslogtreecommitdiffstats
path: root/dom/base/test/jsmodules/importmaps/module_sortedImportMap.mjs
blob: 2b199ca272bff56ccb36c946b3b6d4f5c5292123 (plain)
1
2
3
4
5
6
/* eslint-disable import/no-unresolved */
import { x } from "scope1/scope2/module_simpleExport.mjs";
import { x as y } from "scope1/scope2/scope3/scope4/module_simpleExport.mjs";

sorted_result = x;
sorted_result2 = y;