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 5bc4413 commit ddf3bddCopy full SHA for ddf3bdd
src/orchard/info.clj
@@ -63,7 +63,7 @@
63
64
(defn clj-meta
65
{:added "0.5"}
66
- [{:keys [dialect ns sym computed-ns unqualified-sym] :as opts}]
+ [{:keys [dialect ns sym computed-ns unqualified-sym]}]
67
{:pre [(= dialect :clj)]}
68
(let [ns (or ns computed-ns)
69
ns (or (when (some-> ns find-ns)
test/orchard/info_test.clj
@@ -470,6 +470,10 @@
470
471
(def some-var nil)
472
473
+(def workaround
474
+ "Prevents a clj-kondo warning."
475
+ replace-first)
476
+
477
(deftest info-undefined-namespace-test
478
(let [current-ns (-> ::_ namespace symbol)]
479
(are [input expected] (= expected
0 commit comments