Location of Clojures do form
I am trying to locate where do form is defined looking in clojure.core it does not exist. I would like to figure out how do statement is translated开发者_如何学编程 to Java?
Look to Compiler.java, line 4662 to see how do is handled:
The do
form is a special form and as such isn't implemented in clojure. Look through the clojure.lang.Compiler
class to see how the clojure compiler treats it.
精彩评论