summaryrefslogtreecommitdiff
path: root/tests/testdata/run/if_main.ts
blob: 4dcfecea0ce1a07b38ae83c08eae857b1c2dd6d2 (plain)
1
2
3
4
5
6
if (import.meta.main) {
  console.log("main");
} else {
  console.log("import.meta.url", import.meta.url);
  throw Error("not main");
}