You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ./node_cli.js --show -e '(defn foo [] (throw (js/Error. "dude"))) (defn bar [] (foo)) (bar)'
import * as squint_core from 'squint-cljs/core.js';
var foo = function () {
throw new Error("dude")
};
var bar = function () {
return foo()
};
bar();
export { foo, bar }
//# sourceMappingURL=squint.mjs.map
/Users/borkdude/dev/squint/.tmpHYIPMl/squint.cljs:1
(defn foo [] (throw (js/Error. "dude"))) (defn bar [] (foo)) (bar)
^
Error: dude
at foo (/Users/borkdude/dev/squint/.tmpHYIPMl/squint.cljs:1:21)
at bar (/Users/borkdude/dev/squint/.tmpHYIPMl/squint.cljs:1:62)
at <anonymous> (/Users/borkdude/dev/squint/.tmpHYIPMl/squint.cljs:1:62)
at ModuleJob.run (node:internal/modules/esm/module_job:217:25)
at async ModuleLoader.import (node:internal/modules/esm/loader:308:24)
The text was updated successfully, but these errors were encountered:
WIP in
source-maps
@ c1c7e4cThe text was updated successfully, but these errors were encountered: