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 7f89c3a commit dd2c4faCopy full SHA for dd2c4fa
src/cider/nrepl/middleware/stacktrace.clj
@@ -10,6 +10,7 @@
10
[nrepl.misc :refer [response-for]]
11
[nrepl.transport :as t]
12
[orchard.info :as info]
13
+ [orchard.resource :as resource]
14
[orchard.java :as java]
15
[orchard.misc :as u]
16
[orchard.namespace :as namespace])
@@ -43,7 +44,7 @@
43
44
(defn- path->url
45
"Return a url for the path, either relative to classpath, or absolute."
46
[path]
- (or (info/file-path path) (second (info/resource-path path))))
47
+ (or (info/file-path path) (second (resource/resource-path-tuple path))))
48
49
(defn- frame->url
50
"Return a java.net.URL to the file referenced in the frame, if possible.
0 commit comments