clj-java-decompiler
clj-java-decompiler copied to clipboard
REPL-integrated Clojure-to-Java decompiler
For example, ``` (decompile some-fn) ``` decompiles into invoking `some-fn` instead of showing the content of some-fn.
Hello again :) I've been wondering if it's possible to decompile a class given the class object so I started experimenting. Flow seems pretty straightforward: find the `.class` inside the...
Hearing that Procyon can't decompile `leftn` made me wonder if other decompilers could. So I whipped this up, and it works (with a lot of unfortunate differences in output formatting)....