Last active
December 12, 2015 09:29
Let macro that attempts to add the name that the variable was declared with to the metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro let' | |
"This is a `let` macro that also includes metadata about | |
what name was used for each form if that form supports | |
metadata." | |
[bindings & body] | |
(let [bindings' | |
(mapcat | |
(fn [[name form]] | |
(let [tmp-name (gensym) | |
meta-form `(if (and | |
(instance? clojure.lang.IObj ~tmp-name) | |
(instance? clojure.lang.IMeta ~tmp-name)) | |
(vary-meta assoc :let-name '~name) | |
~tmp-name)] | |
[tmp-name form name meta-form])) | |
(partition 2 bindings))] | |
(list* `let | |
(vec bindings') | |
body))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment