Estoy tratando de implementar una macro para convertir recursivamente una lista infija en una prefijo. Me encuentro con un problema de la siguiente manera:En clojure, cómo hacer plantillas de código al implementar una macro usando la recursión
;;this works
(defmacro recursive-infix [form]
(list (second form) (first form)
(if (not (seq? (nth form 2)))
(nth form 2)
(recursive-infix (nth form 2)))))
;;this doesn't work
(defmacro my-recursive-infix [form]
`(~(second form) ~(first form)
(if (not (seq? ~(nth form 2)))
~(nth form 2)
(my-recursive-infix ~(nth form 2)))))
(macroexpand '(recursive-infix (10 + 10)))
;;get (+ 10 10)
(macroexpand '(my-recursive-infix (10 + 10)))
;;get (+ 10 (if (clojure.core/not (clojure.core/seq? 10)) 10 (user/my-recursive-infix 10)))
(recursive-infix (10 + 10))
;;get 20
(my-recursive-infix (10 + 10))
;;Don't know how to create ISeq from: java.lang.Integer [Thrown class java.lang.IllegalArgumentException]
¿Dónde está el problema? ¿Cómo definir correctamente una macro con plantillas de código?
P.S. Cambié el código a esto y funciona, ¿por qué? ¿cuál es la diferencia ?:
(defmacro my-recursive-infix [form]
(if (not (seq? (nth form 2)))
`(~(second form) ~(first form) ~(nth form 2))
`(~(second form) ~(first form) (my-recursive-infix (nth form 2)))))
¿tiene algo que ver con poner "si el bloque" en el rango vinculante de la contracuenta? – lkahtz