Skip to content

Commit 0dc3f7a

Browse files
committed
rebuild ide and index page
1 parent c869e7c commit 0dc3f7a

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

site/ide.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34057,13 +34057,11 @@
3405734057
var klass = compilers[lang];
3405834058
var compiler = new klass(asc);
3405934059
var result = compiler.compile({ imports });
34060-
console.log(result);
3406134060
var { imports, result } = result;
3406234061
var targ = result;
3406334062
if (lang == "rb") mwrapper = x => x;
3406434063
logCallback(targ);
3406534064
imports = imports || [];
34066-
console.log(imports);
3406734065
imports = Array.from(new Set(imports));
3406834066
for (var i = 0; i < imports.length; i++) {
3406934067
var isrc;
@@ -34893,7 +34891,6 @@
3489334891
py += ");";
3489434892
strayvar = [];
3489534893
} else if (a.op == "fun") {
34896-
console.log(a);
3489734894
py += "\t".repeat(curlvl);
3489834895
py += `def ` + prevfun + `(`;
3489934896
py += a.args.map(a => a.name).join(",");

site/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34202,13 +34202,11 @@
3420234202
var klass = compilers[lang];
3420334203
var compiler = new klass(asc);
3420434204
var result = compiler.compile({ imports });
34205-
console.log(result);
3420634205
var { imports, result } = result;
3420734206
var targ = result;
3420834207
if (lang == "rb") mwrapper = x => x;
3420934208
logCallback(targ);
3421034209
imports = imports || [];
34211-
console.log(imports);
3421234210
imports = Array.from(new Set(imports));
3421334211
for (var i = 0; i < imports.length; i++) {
3421434212
var isrc;
@@ -35038,7 +35036,6 @@
3503835036
py += ");";
3503935037
strayvar = [];
3504035038
} else if (a.op == "fun") {
35041-
console.log(a);
3504235039
py += "\t".repeat(curlvl);
3504335040
py += `def ` + prevfun + `(`;
3504435041
py += a.args.map(a => a.name).join(",");

0 commit comments

Comments
 (0)