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
|
||||
(defmacro exec-select* [this & args]
|
||||
(let [hinted (with-meta this {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||
`(.select* ~hinted ~@args)))
|
||||
(let [hinted (with-meta (gensym) {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||
`(let [~hinted ~this]
|
||||
(.select* ~hinted ~@args))))
|
||||
|
||||
|
||||
:cljs
|
||||
|
|
@ -120,8 +121,9 @@
|
|||
#?(
|
||||
:clj
|
||||
(defmacro exec-transform* [this & args]
|
||||
(let [hinted (with-meta this {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||
`(.transform* ~hinted ~@args)))
|
||||
(let [hinted (with-meta (gensym) {:tag 'com.rpl.specter.protocols.RichNavigator})]
|
||||
`(let [~hinted ~this]
|
||||
(.transform* ~hinted ~@args))))
|
||||
|
||||
|
||||
:cljs
|
||||
|
|
|
|||
Loading…
Reference in a new issue