我认为使用(使用#
语法)的auto-gensym在递归使用时会自行影射,这似乎像是一个bug。jumar确认这发生在1.10.3,1.6.0,1.3.0和1.0.0版本中。
(defmacro recursive-macro-1 [[x & more :as xs] acc]
(if (seq xs)
`(let [x# ~x]
(recursive-macro-1 ~more (conj ~acc x#)))
acc))
(defmacro recursive-macro-2 [[x & more :as xs] acc]
(if (seq xs)
(let [gx (gensym 'x)]
`(let [~gx ~x]
(recursive-macro-2 ~more (conj ~acc ~gx))))
acc))
(comment
(recursive-macro-1 [1 2] []) ;; => [2 2]
(recursive-macro-2 [1 2] []) ;; => [1 2]
)
我原本期望recursive-macro-1
与recursive-macro-2
产生相同的结果,但如您所看到的,通过运行clojure.walk/macroexpand-all
在这些形式上,您可以发现影射阻止了这种情况。
;; auto-gensym - the name of the local binding is the same in the nested let*
(let* [x__10885__auto__ 1]
(let* [x__10885__auto__ 2]
(conj (conj [] x__10885__auto__) x__10885__auto__)))
;; gensym
(let* [x11095 1]
(let* [x11096 2]
(conj (conj [] x11095) x11096)))