[K/JS] Move ES modules logic to a new transformer with IC

This commit is contained in:
Artem Kobzar
2022-10-13 07:32:44 +00:00
committed by Space Team
parent 54deba63a1
commit de880ce9aa
88 changed files with 2476 additions and 1134 deletions
@@ -30,6 +30,8 @@ fun testOk(ok: Any): String {
// FILE: entry.mjs
// ENTRY_ES_MODULE
import { convolutedOk, testOk } from "./main/index.js";
import { convolutedOk, testOk } from "./inlinedObjectLiteralIsCheck_v5.mjs";
console.assert(testOk(convolutedOk()) == "OK");
export function box() {
return testOk(convolutedOk())
}