(emit-form ast)
(emit-form ast opts)
Return the form represented by the given AST
Opts is a set of options, valid options are:
* :hygienic
* :qualified-vars (DEPRECATED, use :qualified-symbols instead)
* :qualified-symbols
Source
(defn emit-form
"Return the form represented by the given AST
Opts is a set of options, valid options are:
* :hygienic
* :qualified-vars (DEPRECATED, use :qualified-symbols instead)
* :qualified-symbols"
{:pass-info {:walk :none :depends #{#'uniquify-locals} :compiler true}}
([ast] (emit-form ast #{}))
([ast opts]
(binding [default/-emit-form* -emit-form*]
(-emit-form* ast opts))))