File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -34057,13 +34057,11 @@
34057
34057
var klass = compilers[lang];
34058
34058
var compiler = new klass(asc);
34059
34059
var result = compiler.compile({ imports });
34060
- console.log(result);
34061
34060
var { imports, result } = result;
34062
34061
var targ = result;
34063
34062
if (lang == "rb") mwrapper = x => x;
34064
34063
logCallback(targ);
34065
34064
imports = imports || [];
34066
- console.log(imports);
34067
34065
imports = Array.from(new Set(imports));
34068
34066
for (var i = 0; i < imports.length; i++) {
34069
34067
var isrc;
34893
34891
py += ");";
34894
34892
strayvar = [];
34895
34893
} else if (a.op == "fun") {
34896
- console.log(a);
34897
34894
py += "\t".repeat(curlvl);
34898
34895
py += `def ` + prevfun + `(`;
34899
34896
py += a.args.map(a => a.name).join(",");
Original file line number Diff line number Diff line change @@ -34202,13 +34202,11 @@
34202
34202
var klass = compilers[lang];
34203
34203
var compiler = new klass(asc);
34204
34204
var result = compiler.compile({ imports });
34205
- console.log(result);
34206
34205
var { imports, result } = result;
34207
34206
var targ = result;
34208
34207
if (lang == "rb") mwrapper = x => x;
34209
34208
logCallback(targ);
34210
34209
imports = imports || [];
34211
- console.log(imports);
34212
34210
imports = Array.from(new Set(imports));
34213
34211
for (var i = 0; i < imports.length; i++) {
34214
34212
var isrc;
35038
35036
py += ");";
35039
35037
strayvar = [];
35040
35038
} else if (a.op == "fun") {
35041
- console.log(a);
35042
35039
py += "\t".repeat(curlvl);
35043
35040
py += `def ` + prevfun + `(`;
35044
35041
py += a.args.map(a => a.name).join(",");
You can’t perform that action at this time.
0 commit comments