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 8f031ba commit c885623Copy full SHA for c885623
src/refactor_nrepl/ns/resolve_missing.clj
@@ -1,6 +1,6 @@
1
(ns refactor-nrepl.ns.resolve-missing
2
"Resolve a missing symbol on the classpath."
3
- (:require [cider.nrepl.middleware.info :refer [info-clj]]
+ (:require [orchard.info :refer [info]]
4
[cider.nrepl.middleware.util.cljs :as cljs]
5
[cljs-tooling.util.analysis :as cljs-ana]
6
[clojure.string :as str]
@@ -15,7 +15,7 @@
15
(slamhound/candidates :refer (symbol (suffix sym)) [] {})]))
16
17
(defn- get-type [sym]
18
- (let [info (info-clj 'user sym)]
+ (let [info (info 'user sym)]
19
(if-let [clazz (:class info)]
20
(cond
21
((set (:interfaces info)) 'clojure.lang.IType) :type
0 commit comments