[K/JS] Move ES modules logic to a new transformer with IC
This commit is contained in:
@@ -48,8 +48,5 @@ fun box(): String {
|
||||
return "Fail6: ${res.component2}"
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
return "OK"
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Point } from "./main/index.js";
|
||||
import { Point } from "./dataClass_v5.mjs";
|
||||
|
||||
export default function() {
|
||||
var p = new Point(3, 7);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as api from "./main/index.js";
|
||||
import * as api from "./exportedDefaultStub_v5.mjs";
|
||||
|
||||
export default function() {
|
||||
var ping = api.ping;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { A, B } from "./main/index.js";
|
||||
import { A, B } from "./jsExportInClass_v5.mjs";
|
||||
|
||||
export default function() {
|
||||
return {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ping, Something } from "./main/index.js"
|
||||
import { ping, Something } from "./recursiveExport_v5.mjs"
|
||||
|
||||
export default function() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user