fix accidental reflection
This commit is contained in:
parent
939378fcd1
commit
dc6740d9dc
1 changed files with 6 additions and 4 deletions
|
|
@ -108,8 +108,9 @@
|
||||||
#?(
|
#?(
|
||||||
:clj
|
:clj
|
||||||
(defmacro exec-select* [this & args]
|
(defmacro exec-select* [this & args]
|
||||||
(let [hinted (with-meta this {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
(let [hinted (with-meta (gensym) {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||||
`(.select* ~hinted ~@args)))
|
`(let [~hinted ~this]
|
||||||
|
(.select* ~hinted ~@args))))
|
||||||
|
|
||||||
|
|
||||||
:cljs
|
:cljs
|
||||||
|
|
@ -120,8 +121,9 @@
|
||||||
#?(
|
#?(
|
||||||
:clj
|
:clj
|
||||||
(defmacro exec-transform* [this & args]
|
(defmacro exec-transform* [this & args]
|
||||||
(let [hinted (with-meta this {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
(let [hinted (with-meta (gensym) {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||||
`(.transform* ~hinted ~@args)))
|
`(let [~hinted ~this]
|
||||||
|
(.transform* ~hinted ~@args))))
|
||||||
|
|
||||||
|
|
||||||
:cljs
|
:cljs
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue