Skip to content

Commit

Permalink
[mod] Temporarily disable experimental c94cb5f for stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Dec 13, 2022
1 parent e1a1fa6 commit aa226e9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/taoensso/truss/impl.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
(:refer-clojure :exclude [some?])
(:require
[clojure.set :as set]
#?(:cljs [cljs.analyzer]))
;; #?(:cljs [cljs.analyzer])
)
#?(:cljs
(:require-macros
[taoensso.truss.impl
Expand Down Expand Up @@ -79,8 +80,8 @@
(set? p)
(let [p
(if (symbol? p)
(if-let [v #?(:clj (resolve p)
:cljs (cljs.analyzer/resolve-var env p))]
(if-let [v #?(:clj (resolve p)
:cljs nil #_(cljs.analyzer/resolve-var env p))]
@v p)
p)]

Expand Down

0 comments on commit aa226e9

Please sign in to comment.