https://ask.clojure.org/index.php/8902/why-doesnt-clojurescript-support-clojure-core-eval-file-line
because tools.reader doesn't implement it?
support would need to start in tools.reader because it applies the location metadata and would need to "adjust" the locations it generates
what doesn't tools.reader implement?
eval-file
in clojure is not implemented in the reader
https://github.com/clojure/clojure/commit/a780a78a736bd91825d99c0f756d4041935e035c
"^{:line 42 :column 99} (1 2)"
right ok, I can look into adding that
https://github.com/clojure/clojure/commit/817abb3d0ca3b7ee80cfe17b5cfe3ea8306f0720 there's also this, which introduced :eval-file
That would be really helpful for tooling that works over socket repl/prepl, thanks!