Clojure-aware error stacktrace rendering

Description

Currently (1.10.0-RC5) stacktraces look like this:

Those are java stacktraces, even for code running inside Clojure. I believe many developers would benefit from stacktraces elements originated from Clojure being rendered in Clojure-aware way. For example:

Key differences:

  • Names demunged (user sees names as they appear in Clojure file, not how they got compiled to Java code. Not every Clojure user need to be aware of that part, I believe)

  • Duplicate invoke/invokeStatic/doInvoke collapsed (again, this is an implementation detail, from Clojure user calling a method is a single operation. As a result, many stacktraces might become quite shorter)

I believe there are many more implementation details like protocol calls, multimethod calls, anonymous functions, where compilation details spill into stacktraces, blow their size and make them only readable by compiler experts. Although not specified in this ticket, those should be collapsed to clojure-friendly representation as well.

There are also many places where such representation should be applied:

  • Default exception printer

  • clojure.main

  • clojure.repl

  • clojure.stacktrace (used by clojure.test)

Also, maybe all those places need some sort of unification? E.g. why are there three (root-cause) implementations in clojure.core?

Prior work: I believe (pst) does some basic demunging, but not collapsing. It also doesn't handle complex cases of protocols etc. And it has to be explicitly called, which is not very convenient.

Environment

None

Activity

Show:

Details

Assignee

Reporter

Approval

Vetted

Priority

Affects versions

Created December 15, 2018 at 7:09 PM
Updated October 2, 2019 at 1:34 PM