(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
Source
(defn emit-form
"Return the form represented by the given AST.
Opts is a set of options, valid options are:
* :hygienic"
{:pass-info {:walk :none :depends #{#'uniquify-locals} :compiler true}}
([ast] (emit-form ast #{}))
([ast opts] (-emit-form* ast opts)))