We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a14a653 commit 5929ddbCopy full SHA for 5929ddb
src/cider/nrepl/middleware/stacktrace.clj
@@ -108,10 +108,10 @@
108
109
(defn flag-tooling
110
"Walk the call stack from top to bottom, flagging frames below the first call
111
- to `clojure.lang.Compiler` or `(clojure.tools.)nrepl.*` as `:tooling` to
+ to `clojure.lang.Compiler` or `nrepl.*` as `:tooling` to
112
distinguish compilation and nREPL middleware frames from user code."
113
[frames]
114
- (let [tool-regex #"^clojure\.lang\.Compiler|^clojure\.tools\.nrepl\.|^nrepl\.|^cider\."
+ (let [tool-regex #"^clojure\.lang\.Compiler|^nrepl\.|^cider\."
115
tool? #(re-find tool-regex (or (:name %) ""))
116
flag #(if (tool? %)
117
(flag-frame % :tooling)
0 commit comments