#33

Update to latest name mangling map from Clojure

Hi, I noticed that (clj-stacktrace.repl/method-str) was not handling _SINGLEQUOTE_, so I updated the name translation map to the latest one latest one I found in the Clojure source code. I'd appreciate ...

  • Opened by torsten Feb 23, 2015
  • 1 comment
#32

Update library version in README to the latest: 0.2.8

This is a semi-automated pull request intended to bring README up to date and help developers to use latest version of clj-stacktrace. We're sorry if you already know about this issue and out-dated ...

  • Opened by Hatnik Jan 23, 2015
#31

Avoid hiding exceptions when trying to format the stack trace

Hi, while using lein cljs-build to compile ClojureScript code, I have been annoyed several times by ClojureScript compiler syntax errors not being reported by clj-stacktrace. Some syntax errors made the ...

#30

make 'pst' accept parsed exceptions

We are using clj-stacktrace.core/parse-exception to turn exceptions into data that we can store in a database. We can then query for recent stacktraces which we want to print with clj-stacktrace/pst, which ...

#29

Doesn't seem to be installing from instructions in README

I have followed the instructions in the readme and added the required fields to my profile.clj. It looks like this: {:user {:plugins [[lein-vanity "0.1.0"] [lein-marginalia ...

#28

Replace @ in README with deref

Some lein plugins, such as lein-ancient, read profiles.clj as EDN. The @ reader macro is not valid EDN, so I changed the example in the README to use deref instead. Exact usage: https://github.com/xsc/lein-ancient/blob/master/src/leiningen/ancient/utils/io.clj#L93 ...

  • Opened by voidlily Oct 22, 2013
  • 1 comment
#27

fixes IndexOutOfBoundsExceptions when trying to print exceptions

fixes IndexOutOfBoundsExceptions when trying to print exceptions with sort stack traces (< 3 StackElements). Fixes mmcgrana/clj-stacktrace#25 and mmcgrana/clj-stacktrace#26

  • Opened by nahuel Aug 24, 2013
  • 2 comments
#26

clj-stacktrace.rpl/pst-on raises IndexOutOfBoundsException for exceptions with stack traces one or two elements deep

The following code raises a java.lang.ArithmeticException with an one-element stack trace that clj-stacktrace.repl/find-source-width can't handle, so an IndexOutOfBoundsException is raised when trying ...

  • Opened by nahuel Aug 19, 2013
#25

IndexOutOfBoundsException for exceptions with no stack trace filled in

(pst (doto (Exception.) (.setStackTrace (make-array java.lang.StackTraceElement 0)))) IndexOutOfBoundsException clojure.lang.RT.nthFrom (RT.java:795) clojure.lang.RT.nth (RT.java:764) ...

#24

Stop IndexOutOfBounds when no trace-elems in the cause

See https://github.com/mmcgrana/clj-stacktrace/issues/20